summaryrefslogtreecommitdiffstats
path: root/core/java/android/content/Intent.java
diff options
context:
space:
mode:
authorBjorn Bringert <bringert@android.com>2009-12-09 12:23:12 +0000
committerBjorn Bringert <bringert@android.com>2009-12-09 14:51:19 +0000
commit3c50ef6f665ab22cdb50c76bb31283e6bac47fc6 (patch)
tree8a1be5a5c93e9b40069ef27ef679eb6d5adfbc42 /core/java/android/content/Intent.java
parent9fbb534ebddb2ae43e862a3bc0ff5859358b194b (diff)
downloadframeworks_base-3c50ef6f665ab22cdb50c76bb31283e6bac47fc6.zip
frameworks_base-3c50ef6f665ab22cdb50c76bb31283e6bac47fc6.tar.gz
frameworks_base-3c50ef6f665ab22cdb50c76bb31283e6bac47fc6.tar.bz2
Use unbundled QSB for global search
This obsoletes the following: - The need to run SearchDialog in the system process. - The global search mode code in SearchDialog. - The GlobalSearch package. - The search widget built into Launcher. I will remove these in future changes. Change-Id: I154386b1d6be73cfeab8376b6959a1dc5483e5f0
Diffstat (limited to 'core/java/android/content/Intent.java')
-rw-r--r--core/java/android/content/Intent.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java
index a96e896..dfdfa15 100644
--- a/core/java/android/content/Intent.java
+++ b/core/java/android/content/Intent.java
@@ -1102,6 +1102,16 @@ public class Intent implements Parcelable {
public static final String ACTION_SEARCH_LONG_PRESS = "android.intent.action.SEARCH_LONG_PRESS";
/**
+ * Activity Action: Start the global search activity.
+ * <p>Input: Nothing.
+ * <p>Output: Nothing.
+ *
+ * @hide Pending API council approval
+ */
+ @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
+ public static final String ACTION_GLOBAL_SEARCH = "android.intent.action.GLOBAL_SEARCH";
+
+ /**
* Activity Action: The user pressed the "Report" button in the crash/ANR dialog.
* This intent is delivered to the package which installed the application, usually
* the Market.