Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(784)

Unified Diff: webkit/appcache/mock_appcache_storage.cc

Issue 7720022: Third-party appcache blocking. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Keeping up to date with trunk. Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/appcache/mock_appcache_policy.cc ('k') | webkit/appcache/mock_appcache_storage_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/mock_appcache_storage.cc
diff --git a/webkit/appcache/mock_appcache_storage.cc b/webkit/appcache/mock_appcache_storage.cc
index 58e8a7edd614ed998fa3098e1e0b100d87f33d05..20ecf8d84dfcbbb8d96b896405c42256e147ce98 100644
--- a/webkit/appcache/mock_appcache_storage.cc
+++ b/webkit/appcache/mock_appcache_storage.cc
@@ -248,7 +248,7 @@ void MockAppCacheStorage::ProcessFindResponseForMainRequest(
delegate_ref->delegate->OnMainResponseFound(
url, simulated_found_entry_,
simulated_found_fallback_url_, simulated_found_fallback_entry_,
- simulated_found_cache_id_, simulated_found_manifest_url_, false);
+ simulated_found_cache_id_, simulated_found_manifest_url_);
}
return;
}
@@ -348,7 +348,7 @@ void MockAppCacheStorage::ProcessFindResponseForMainRequest(
if (found_candidate.entry.has_response_id()) {
delegate_ref->delegate->OnMainResponseFound(
url, found_candidate.entry, GURL(), AppCacheEntry(),
- found_candidate.cache_id, found_candidate.manifest_url, false);
+ found_candidate.cache_id, found_candidate.manifest_url);
return;
}
@@ -359,13 +359,13 @@ void MockAppCacheStorage::ProcessFindResponseForMainRequest(
found_fallback_candidate.url,
found_fallback_candidate.entry,
found_fallback_candidate.cache_id,
- found_fallback_candidate.manifest_url, false);
+ found_fallback_candidate.manifest_url);
return;
}
// Didn't find anything.
delegate_ref->delegate->OnMainResponseFound(
- url, AppCacheEntry(), GURL(), AppCacheEntry(), kNoCacheId, GURL(), false);
+ url, AppCacheEntry(), GURL(), AppCacheEntry(), kNoCacheId, GURL());
}
void MockAppCacheStorage::ProcessMakeGroupObsolete(
« no previous file with comments | « webkit/appcache/mock_appcache_policy.cc ('k') | webkit/appcache/mock_appcache_storage_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698