diff options
Diffstat (limited to 'chrome/browser/appcache')
-rw-r--r-- | chrome/browser/appcache/chrome_appcache_service.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/appcache/chrome_appcache_service.cc b/chrome/browser/appcache/chrome_appcache_service.cc index 1939a16..c2e41a0 100644 --- a/chrome/browser/appcache/chrome_appcache_service.cc +++ b/chrome/browser/appcache/chrome_appcache_service.cc @@ -82,8 +82,8 @@ bool ChromeAppCacheService::CanLoadAppCache(const GURL& manifest_url) { ContentSetting setting = host_contents_settings_map_->GetContentSetting( manifest_url, CONTENT_SETTINGS_TYPE_COOKIES); DCHECK(setting != CONTENT_SETTING_DEFAULT); - return setting == CONTENT_SETTING_ALLOW || - setting == CONTENT_SETTING_ASK; // we don't prompt for read access + // We don't prompt for read access. + return setting != CONTENT_SETTING_BLOCK; } int ChromeAppCacheService::CanCreateAppCache( |