Chromium Code Reviews| Index: android_webview/browser/aw_content_browser_client.cc |
| diff --git a/android_webview/browser/aw_content_browser_client.cc b/android_webview/browser/aw_content_browser_client.cc |
| index e579e2287770023eaf9a3bcbd5361d594714e60a..8a1f1e302bca066e533f10a505fcdb4d754dd2e2 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 the whole WebView instance. |
|
joth
2012/11/30 22:16:59
nit: whole WV instance, or whole application?
mnaganov (inactive)
2012/12/03 15:07:36
Per instance. Reworded to avoid confusion.
|
| + return true; |
| } |