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

Unified Diff: chrome/browser/net/chrome_url_request_context.cc

Issue 5912001: Add PrerenderResourceHandler and hook it into the ResourceDispatcherHost.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Remove extra comment. Created 10 years 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: chrome/browser/net/chrome_url_request_context.cc
diff --git a/chrome/browser/net/chrome_url_request_context.cc b/chrome/browser/net/chrome_url_request_context.cc
index eb9e00190229a5d77d9ebd25ab62a8a38a1ce25d..144dedf5c8469ac2e8f6f00f507246cdee0baebf 100644
--- a/chrome/browser/net/chrome_url_request_context.cc
+++ b/chrome/browser/net/chrome_url_request_context.cc
@@ -857,6 +857,7 @@ ChromeURLRequestContext::ChromeURLRequestContext(
blob_storage_context_ = other->blob_storage_context_;
file_system_context_ = other->file_system_context_;
extension_info_map_ = other->extension_info_map_;
+ prerender_manager_ = other->prerender_manager_;
}
void ChromeURLRequestContext::OnAcceptLanguageChange(
@@ -926,6 +927,7 @@ ChromeURLRequestContextFactory::ChromeURLRequestContextFactory(Profile* profile)
blob_storage_context_ = profile->GetBlobStorageContext();
file_system_context_ = profile->GetFileSystemContext();
extension_info_map_ = profile->GetExtensionInfoMap();
+ prerender_manager_ = profile->GetPrerenderManager();
}
ChromeURLRequestContextFactory::~ChromeURLRequestContextFactory() {
@@ -952,4 +954,5 @@ void ChromeURLRequestContextFactory::ApplyProfileParametersToContext(
context->set_blob_storage_context(blob_storage_context_);
context->set_file_system_context(file_system_context_);
context->set_extension_info_map(extension_info_map_);
+ context->set_prerender_manager(prerender_manager_);
}

Powered by Google App Engine
This is Rietveld 408576698