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

Unified Diff: content/browser/cache_storage/cache_storage_context_impl.cc

Issue 1174943004: [CacheStorage] Use URLRequestContextGetter instead of URLRequestContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Actually pass a getter Created 5 years, 6 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
Index: content/browser/cache_storage/cache_storage_context_impl.cc
diff --git a/content/browser/cache_storage/cache_storage_context_impl.cc b/content/browser/cache_storage/cache_storage_context_impl.cc
index 7e43070909d30921ac685c5504bd87d1ec883895..f5e841a6667b112835ee3f2f207e8cd500fa2b67 100644
--- a/content/browser/cache_storage/cache_storage_context_impl.cc
+++ b/content/browser/cache_storage/cache_storage_context_impl.cc
@@ -77,8 +77,7 @@ void CacheStorageContextImpl::SetBlobParametersForCache(
if (cache_manager_ && request_context && blob_storage_context) {
cache_manager_->SetBlobParametersForCache(
- request_context->GetURLRequestContext(),
- blob_storage_context->context()->AsWeakPtr());
+ request_context, blob_storage_context->context()->AsWeakPtr());
mmenke 2015/06/10 17:00:31 This is the profile's main RequestContextGetter?
jkarlin 2015/06/10 18:26:03 It's the partition's context getter. See https://c
}
}

Powered by Google App Engine
This is Rietveld 408576698