| 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!");
|
|
|