Commit 4e5f5870 authored by The Android Open Source Project's avatar The Android Open Source Project
Browse files

auto import from //branches/cupcake/...@137197

parent 25a828a4
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := user development
LOCAL_MODULE_TAGS := user
# TODO: Remove dependency of application on the test runner (android.test.runner)
# library.
......
......@@ -1289,13 +1289,12 @@ public class BrowserActivity extends Activity
}
/**
* Overriding this forces the search key to launch global search. The difference
* is the final "true" which requests global search.
* Overriding this to insert a local information bundle
*/
@Override
public boolean onSearchRequested() {
startSearch(null, false,
createGoogleSearchSourceBundle(GOOGLE_SEARCH_SOURCE_SEARCHKEY), true);
createGoogleSearchSourceBundle(GOOGLE_SEARCH_SOURCE_SEARCHKEY), false);
return true;
}
......
......@@ -423,6 +423,8 @@ class TabControl {
// Create a new tab and add it to the tab list
Tab t = new Tab(w, closeOnExit);
mTabs.add(t);
// Initially put the tab in the background.
putTabInBackground(t);
return t;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment