Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
packages_apps_Browser
Commits
4e5f5870
Commit
4e5f5870
authored
16 years ago
by
The Android Open Source Project
Browse files
Options
Download
Email Patches
Plain Diff
auto import from //branches/cupcake/...@137197
parent
25a828a4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
Android.mk
Android.mk
+1
-1
src/com/android/browser/BrowserActivity.java
src/com/android/browser/BrowserActivity.java
+2
-3
src/com/android/browser/TabControl.java
src/com/android/browser/TabControl.java
+2
-0
No files found.
Android.mk
View file @
4e5f5870
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.
...
...
This diff is collapsed.
Click to expand it.
src/com/android/browser/BrowserActivity.java
View file @
4e5f5870
...
...
@@ -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
),
tru
e
);
createGoogleSearchSourceBundle
(
GOOGLE_SEARCH_SOURCE_SEARCHKEY
),
fals
e
);
return
true
;
}
...
...
This diff is collapsed.
Click to expand it.
src/com/android/browser/TabControl.java
View file @
4e5f5870
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment