diff options
| author | John Reck <jreck@google.com> | 2011-07-01 16:49:28 -0700 |
|---|---|---|
| committer | John Reck <jreck@google.com> | 2011-07-01 16:49:28 -0700 |
| commit | 71e5142e4237a0f9d51a93504da36b778e8b79e4 (patch) | |
| tree | a44fb774ffa3f78d520627c3f5ef4cf9cfefe72c /src/com/android/browser/Controller.java | |
| parent | 2bc8042224be51966d748b870768ec1b376a1621 (diff) | |
Shortcut the TYPED url case
Bug: 4985289
Don't go through the handleIntent route if the user typed
something into the omnibox if we don't need to.
Change-Id: I4de8e18c1ca734a0c6bfbca43c9448417cec2057
Diffstat (limited to 'src/com/android/browser/Controller.java')
| -rw-r--r-- | src/com/android/browser/Controller.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/android/browser/Controller.java b/src/com/android/browser/Controller.java index 88fcbd65..3398af09 100644 --- a/src/com/android/browser/Controller.java +++ b/src/com/android/browser/Controller.java @@ -2348,7 +2348,8 @@ public class Controller * @param view The WebView used to load url. * @param url The URL to load. */ - protected void loadUrl(Tab tab, String url) { + @Override + public void loadUrl(Tab tab, String url) { loadUrl(tab, url, null); } |
