| Index: chrome/browser/appcache/chrome_appcache_service.cc
|
| diff --git a/chrome/browser/appcache/chrome_appcache_service.cc b/chrome/browser/appcache/chrome_appcache_service.cc
|
| index c2e41a0c88e039b9da5364299dc840e5c6e16a67..5f58b297c67d8666f0033cd32a329fca9e5b0318 100644
|
| --- a/chrome/browser/appcache/chrome_appcache_service.cc
|
| +++ b/chrome/browser/appcache/chrome_appcache_service.cc
|
| @@ -80,7 +80,7 @@ void ChromeAppCacheService::ClearLocalState(const FilePath& profile_path) {
|
| bool ChromeAppCacheService::CanLoadAppCache(const GURL& manifest_url) {
|
| DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
|
| ContentSetting setting = host_contents_settings_map_->GetContentSetting(
|
| - manifest_url, CONTENT_SETTINGS_TYPE_COOKIES);
|
| + manifest_url, CONTENT_SETTINGS_TYPE_COOKIES, "");
|
| DCHECK(setting != CONTENT_SETTING_DEFAULT);
|
| // We don't prompt for read access.
|
| return setting != CONTENT_SETTING_BLOCK;
|
| @@ -90,7 +90,7 @@ int ChromeAppCacheService::CanCreateAppCache(
|
| const GURL& manifest_url, net::CompletionCallback* callback) {
|
| DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
|
| ContentSetting setting = host_contents_settings_map_->GetContentSetting(
|
| - manifest_url, CONTENT_SETTINGS_TYPE_COOKIES);
|
| + manifest_url, CONTENT_SETTINGS_TYPE_COOKIES, "");
|
| DCHECK(setting != CONTENT_SETTING_DEFAULT);
|
| if (setting == CONTENT_SETTING_ASK) {
|
| ChromeThread::PostTask(
|
| @@ -109,7 +109,7 @@ void ChromeAppCacheService::DoPrompt(
|
|
|
| // The setting may have changed (due to the "remember" option)
|
| ContentSetting setting = host_contents_settings_map_->GetContentSetting(
|
| - manifest_url, CONTENT_SETTINGS_TYPE_COOKIES);
|
| + manifest_url, CONTENT_SETTINGS_TYPE_COOKIES, "");
|
| if (setting != CONTENT_SETTING_ASK) {
|
| int rv = (setting != CONTENT_SETTING_BLOCK) ? net::OK :
|
| net::ERR_ACCESS_DENIED;
|
|
|