diff options
| author | Leon Scroggins <scroggo@google.com> | 2010-02-01 16:14:11 -0500 |
|---|---|---|
| committer | Leon Scroggins <scroggo@google.com> | 2010-02-01 16:53:47 -0500 |
| commit | a1cc3fdce19a336c251297c61cd83ac6cf767cd1 (patch) | |
| tree | 943da2e0836557314fecd1a0a6ca5590b21a118b /src/com/android/browser/Tab.java | |
| parent | 0a1d838ccd16ac08300bb8ac89b61ee0c956a49b (diff) | |
| download | packages_apps_Browser-a1cc3fdce19a336c251297c61cd83ac6cf767cd1.tar.gz packages_apps_Browser-a1cc3fdce19a336c251297c61cd83ac6cf767cd1.tar.bz2 packages_apps_Browser-a1cc3fdce19a336c251297c61cd83ac6cf767cd1.zip | |
Use the constants defined in RecognizerResultsIntent for voice search.
Diffstat (limited to 'src/com/android/browser/Tab.java')
| -rw-r--r-- | src/com/android/browser/Tab.java | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/com/android/browser/Tab.java b/src/com/android/browser/Tab.java index 0a54eeef3..5db4848b1 100644 --- a/src/com/android/browser/Tab.java +++ b/src/com/android/browser/Tab.java @@ -38,6 +38,7 @@ import android.os.AsyncTask; import android.os.Bundle; import android.os.Message; import android.provider.Browser; +import android.speech.RecognizerResultsIntent; import android.util.Log; import android.view.KeyEvent; import android.view.LayoutInflater; @@ -170,9 +171,9 @@ class Tab { */ /* package */ void activateVoiceSearchMode(Intent intent) { ArrayList<String> results = intent.getStringArrayListExtra( - "result_strings"); + RecognizerResultsIntent.EXTRA_VOICE_SEARCH_RESULT_STRINGS); ArrayList<String> urls = intent.getStringArrayListExtra( - "result_urls"); + RecognizerResultsIntent.EXTRA_VOICE_SEARCH_RESULT_URLS); if (results != null) { // This tab is now entering voice search mode for the first time, or // a new voice search was done. @@ -205,13 +206,6 @@ class Tab { mMainView.loadUrl(mVoiceSearchData.mLastVoiceSearchUrl); } /* package */ static class VoiceSearchData { - /** - * Intent action for a voice search. Will be replaced with a global - * variable. - */ - public static final String VOICE_SEARCH_RESULTS - = "android.speech.action.VOICE_SEARCH_RESULTS"; - public VoiceSearchData(ArrayList<String> results, ArrayList<String> urls) { mVoiceSearchResults = results; |
