summaryrefslogtreecommitdiff
path: root/core/java/android/content/Intent.java
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2013-09-03 14:34:12 -0700
committerDianne Hackborn <hackbod@google.com>2013-09-03 14:55:01 -0700
commitd318e0b19f44697712b2824b8d685349a5b92000 (patch)
treea8aaedc85472f52cdb407021a23c5d711dd18d22 /core/java/android/content/Intent.java
parent59f6b510569a4c70c43c5b9b80fa70d5a28d99f0 (diff)
Fix issue #10461469: KLP API Review: EXTRA_SHUTDOWN_USERSPACE_ONLY
Maybe adding more words will make it more clear. :) Change-Id: Ie729eaba1df542d4ffcd0502ccba3807d641fd72
Diffstat (limited to 'core/java/android/content/Intent.java')
-rw-r--r--core/java/android/content/Intent.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java
index d7ca91537cf7..dfc041295953 100644
--- a/core/java/android/content/Intent.java
+++ b/core/java/android/content/Intent.java
@@ -3300,8 +3300,10 @@ public class Intent implements Parcelable, Cloneable {
/**
* Optional extra for {@link #ACTION_SHUTDOWN} that allows the sender to qualify that
* this shutdown is only for the user space of the system, not a complete shutdown.
- * Hardware should not be shut down when this is true. The default if not supplied
- * is false.
+ * When this is true, hardware devices can use this information to determine that
+ * they shouldn't do a complete shutdown of their device since this is not a
+ * complete shutdown down to the kernel, but only user space restarting.
+ * The default if not supplied is false.
*/
public static final String EXTRA_SHUTDOWN_USERSPACE_ONLY
= "android.intent.extra.SHUTDOWN_USERSPACE_ONLY";