diff options
Diffstat (limited to 'android_webview/browser')
-rw-r--r-- | android_webview/browser/aw_content_browser_client.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/android_webview/browser/aw_content_browser_client.cc b/android_webview/browser/aw_content_browser_client.cc index e579e22..62f92ec 100644 --- a/android_webview/browser/aw_content_browser_client.cc +++ b/android_webview/browser/aw_content_browser_client.cc @@ -114,9 +114,9 @@ gfx::ImageSkia* AwContentBrowserClient::GetDefaultFavicon() { bool AwContentBrowserClient::AllowAppCache(const GURL& manifest_url, const GURL& first_party, content::ResourceContext* context) { - // TODO(boliu): Implement this to power WebSettings.SetAppCacheEnabled. - NOTIMPLEMENTED(); - return false; + // WebView doesn't have a per-site policy for locally stored data, + // instead AppCache can be disabled for individual WebViews. + return true; } |