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

Unified Diff: android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java

Issue 2745803003: autofill-try
Patch Set: before I leave Created 3 years, 9 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: android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java
diff --git a/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java b/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java
index 66779333e88e2b0175f4f0dcb441510308e16486..3ee0cc79d6ac743cca887b3d0aea17414df8757e 100644
--- a/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java
+++ b/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java
@@ -101,7 +101,7 @@ class WebViewChromium implements WebViewProvider, WebViewProvider.ScrollDelegate
private final int mAppTargetSdkVersion;
- private WebViewChromiumFactoryProvider mFactory;
+ protected WebViewChromiumFactoryProvider mFactory;
private final boolean mShouldDisableThreadChecking;
@@ -249,7 +249,7 @@ class WebViewChromium implements WebViewProvider, WebViewProvider.ScrollDelegate
"Calling View methods on another thread than the UI thread.");
}
- private boolean checkNeedsPost() {
+ protected boolean checkNeedsPost() {
boolean needsPost = !mFactory.hasStarted() || !ThreadUtils.runningOnUiThread();
if (!needsPost && mAwContents == null) {
throw new IllegalStateException("AwContents must be created if we are not posting!");

Powered by Google App Engine
This is Rietveld 408576698