Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Unified Diff: content/public/android/java/src/org/chromium/content/browser/ContentView.java

Issue 14271024: [Android WebView] Move the most of WebSettings into AwSettings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated findbugs issues Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/android/java/src/org/chromium/content/browser/ContentView.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentView.java b/content/public/android/java/src/org/chromium/content/browser/ContentView.java
index f067389c6ec46655eb726e074b18c76de2126c34..fe6655b13938ae626d8e07446061b3f5103edb79 100644
--- a/content/public/android/java/src/org/chromium/content/browser/ContentView.java
+++ b/content/public/android/java/src/org/chromium/content/browser/ContentView.java
@@ -109,7 +109,7 @@ public class ContentView extends FrameLayout
super(context, attrs, defStyle);
mContentViewCore = new ContentViewCore(context, personality);
- mContentViewCore.initialize(this, this, nativeWebContents, windowAndroid, false);
+ mContentViewCore.initialize(this, this, nativeWebContents, windowAndroid);
}
// PageInfo implementation.
@@ -229,10 +229,6 @@ public class ContentView extends FrameLayout
mContentViewCore.loadUrl(params);
}
- void setAllUserAgentOverridesInHistory() {
- mContentViewCore.setAllUserAgentOverridesInHistory();
- }
-
/**
* Stops loading the current web contents.
*/

Powered by Google App Engine
This is Rietveld 408576698