Index: android_webview/java/src/org/chromium/android_webview/AwContents.java |
diff --git a/android_webview/java/src/org/chromium/android_webview/AwContents.java b/android_webview/java/src/org/chromium/android_webview/AwContents.java |
index 08f191d513f4c3a7499013fea7582c4cb99b182b..263ef15ab783ebb3fca133594b80f35c4bce3194 100644 |
--- a/android_webview/java/src/org/chromium/android_webview/AwContents.java |
+++ b/android_webview/java/src/org/chromium/android_webview/AwContents.java |
@@ -692,6 +692,10 @@ public class AwContents { |
return nativeGetAwDrawGLFunction(); |
} |
+ public static void setShouldDownloadFavicons() { |
+ nativeSetShouldDownloadFavicons(); |
+ } |
+ |
/** |
* Intended for test code. |
* @return the number of native instances of this class. |
@@ -1941,6 +1945,7 @@ public class AwContents { |
private static native void nativeSetAwDrawGLFunctionTable(int functionTablePointer); |
private static native int nativeGetAwDrawGLFunction(); |
private static native int nativeGetNativeInstanceCount(); |
+ private static native void nativeSetShouldDownloadFavicons(); |
private native void nativeSetJavaPeers(int nativeAwContents, AwContents awContents, |
AwWebContentsDelegate webViewWebContentsDelegate, |
AwContentsClientBridge contentsClientBridge, |