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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwContentsIoThreadClient.java

Issue 11419093: [Android WebView] Implement WebSettings.{get|set}CacheMode (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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/java/src/org/chromium/android_webview/AwContentsIoThreadClient.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwContentsIoThreadClient.java b/android_webview/java/src/org/chromium/android_webview/AwContentsIoThreadClient.java
index b656a05acf0d18410ac462ad2fc8df2a3f0834fb..70afd4e7b748adec1d1c4a4e6e9ded3d73ab7d9d 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwContentsIoThreadClient.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwContentsIoThreadClient.java
@@ -18,6 +18,10 @@ import org.chromium.base.JNINamespace;
public interface AwContentsIoThreadClient {
// Called on the IO thread.
boliu 2012/11/20 20:00:09 nit: All the methods are called from IO thread, an
mnaganov (inactive) 2012/11/21 10:37:08 Done. I rephrased the class comment to avoid exces
@CalledByNative
+ public int getCacheMode();
+
+ // Called on the IO thread.
+ @CalledByNative
public InterceptedRequestData shouldInterceptRequest(String url);
// Called on the IO thread.

Powered by Google App Engine
This is Rietveld 408576698