summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRicardo Cervera <rcervera@google.com>2014-04-04 17:48:51 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-04-04 17:48:51 +0000
commit8f81d29558bb0c97187d5ae3a7ee696ec13b264a (patch)
tree759ec10294fe0deadb348c85041abb142ceeb58b
parent1ac6519b245c008ea6b3b6baba205fb58d75c807 (diff)
parentd10b65431547d66b41e4e282e9261453bb0658ff (diff)
downloadframeworks_base-8f81d29558bb0c97187d5ae3a7ee696ec13b264a.zip
frameworks_base-8f81d29558bb0c97187d5ae3a7ee696ec13b264a.tar.gz
frameworks_base-8f81d29558bb0c97187d5ae3a7ee696ec13b264a.tar.bz2
am d10b6543: am 5df82523: am ff3d89c0: Merge "docs: Added permissions note for Context.getFilesDir. Bug: 13716053" into klp-docs
* commit 'd10b65431547d66b41e4e282e9261453bb0658ff': docs: Added permissions note for Context.getFilesDir. Bug: 13716053
-rw-r--r--core/java/android/content/Context.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/core/java/android/content/Context.java b/core/java/android/content/Context.java
index f4b1afe..5057cf4 100644
--- a/core/java/android/content/Context.java
+++ b/core/java/android/content/Context.java
@@ -530,6 +530,9 @@ public abstract class Context {
* Open a private file associated with this Context's application package
* for writing. Creates the file if it doesn't already exist.
*
+ * <p>No permissions are required to invoke this method, since it uses internal
+ * storage.
+ *
* @param name The name of the file to open; can not contain path
* separators.
* @param mode Operating mode. Use 0 or {@link #MODE_PRIVATE} for the
@@ -587,6 +590,9 @@ public abstract class Context {
* Returns the absolute path to the directory on the filesystem where
* files created with {@link #openFileOutput} are stored.
*
+ * <p>No permissions are required to read or write to the returned path, since this
+ * path is internal storage.
+ *
* @return The path of the directory holding application files.
*
* @see #openFileOutput
@@ -1798,7 +1804,7 @@ public abstract class Context {
* @hide like {@link #stopService(Intent)} but for a specific user.
*/
public abstract boolean stopServiceAsUser(Intent service, UserHandle user);
-
+
/**
* Connect to an application service, creating it if needed. This defines
* a dependency between your application and the service. The given