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

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

Issue 2201593002: aw: Add thread hops to more Adapter classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « android_webview/glue/java/src/com/android/webview/chromium/WebStorageAdapter.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/glue/java/src/com/android/webview/chromium/WebViewChromiumFactoryProvider.java
diff --git a/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromiumFactoryProvider.java b/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromiumFactoryProvider.java
index d9204c8d2bb8e36473f6c42e91b5be6dc0763a47..00e65f1ccda68fa67e18a793a32ce3f9960e0ba0 100644
--- a/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromiumFactoryProvider.java
+++ b/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromiumFactoryProvider.java
@@ -492,7 +492,7 @@ public class WebViewChromiumFactoryProvider implements WebViewFactoryProvider {
}
});
mGeolocationPermissions =
- new GeolocationPermissionsAdapter(awGelocationPermissions);
+ new GeolocationPermissionsAdapter(this, awGelocationPermissions);
}
}
return mGeolocationPermissions;
@@ -532,7 +532,7 @@ public class WebViewChromiumFactoryProvider implements WebViewFactoryProvider {
return AwQuotaManagerBridge.getInstance();
}
});
- mWebStorage = new WebStorageAdapter(awQuotaManager);
+ mWebStorage = new WebStorageAdapter(this, awQuotaManager);
}
}
return mWebStorage;
« no previous file with comments | « android_webview/glue/java/src/com/android/webview/chromium/WebStorageAdapter.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698