| Index: android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| ===================================================================
|
| --- android_webview/java/src/org/chromium/android_webview/AwContents.java (revision 160963)
|
| +++ android_webview/java/src/org/chromium/android_webview/AwContents.java (working copy)
|
| @@ -18,7 +18,6 @@
|
| import org.chromium.base.ThreadUtils;
|
| import org.chromium.chrome.browser.component.navigation_interception.InterceptNavigationDelegate;
|
| import org.chromium.content.browser.ContentViewCore;
|
| -import org.chromium.content.browser.LoadUrlParams;
|
| import org.chromium.content.browser.NavigationHistory;
|
| import org.chromium.content.common.CleanupReference;
|
| import org.chromium.net.X509Util;
|
| @@ -174,17 +173,6 @@
|
| return null;
|
| }
|
|
|
| - /**
|
| - * Load url without fixing up the url string. Consumers of ContentView are responsible for
|
| - * ensuring the URL passed in is properly formatted (i.e. the scheme has been added if left
|
| - * off during user input).
|
| - *
|
| - * @param pararms Parameters for this load.
|
| - */
|
| - public void loadUrl(LoadUrlParams params) {
|
| - mContentViewCore.loadUrl(params);
|
| - }
|
| -
|
| //--------------------------------------------------------------------------------------------
|
| // WebView[Provider] method implementations (where not provided by ContentViewCore)
|
| //--------------------------------------------------------------------------------------------
|
|
|