summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2009-07-10 17:30:50 -0700
committerDianne Hackborn <hackbod@google.com>2009-07-10 17:30:50 -0700
commit4554f30c834723db6946400bf1827be4419a3134 (patch)
treed965bc3de7f26efb0b88ab786d5dbafd1b54ea80
parent1c9fb40cb6dbfeee58c41a43852c5b94a1b83613 (diff)
downloadframeworks_base-4554f30c834723db6946400bf1827be4419a3134.zip
frameworks_base-4554f30c834723db6946400bf1827be4419a3134.tar.gz
frameworks_base-4554f30c834723db6946400bf1827be4419a3134.tar.bz2
CLOSE_SYSTEM_DIALOGS can't be protected.
-rw-r--r--core/java/android/content/Intent.java3
-rw-r--r--core/res/AndroidManifest.xml1
2 files changed, 0 insertions, 4 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java
index 7615614..9202b9a 100644
--- a/core/java/android/content/Intent.java
+++ b/core/java/android/content/Intent.java
@@ -1202,9 +1202,6 @@ public class Intent implements Parcelable {
* Broadcast Action: This is broadcast when a user action should request a
* temporary system dialog to dismiss. Some examples of temporary system
* dialogs are the notification window-shade and the recent tasks dialog.
- *
- * <p class="note">This is a protected intent that can only be sent
- * by the system.
*/
public static final String ACTION_CLOSE_SYSTEM_DIALOGS = "android.intent.action.CLOSE_SYSTEM_DIALOGS";
/**
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml
index e964cda..00d9cf6 100644
--- a/core/res/AndroidManifest.xml
+++ b/core/res/AndroidManifest.xml
@@ -32,7 +32,6 @@
<protected-broadcast android:name="android.intent.action.TIME_TICK" />
<protected-broadcast android:name="android.intent.action.TIMEZONE_CHANGED" />
<protected-broadcast android:name="android.intent.action.BOOT_COMPLETED" />
- <protected-broadcast android:name="android.intent.action.CLOSE_SYSTEM_DIALOGS" />
<protected-broadcast android:name="android.intent.action.PACKAGE_INSTALL" />
<protected-broadcast android:name="android.intent.action.PACKAGE_ADDED" />
<protected-broadcast android:name="android.intent.action.PACKAGE_REPLACED" />