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

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

Issue 3108042: Support sending BlobData to browser process. Also support sending UploadData... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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 | « chrome/browser/net/chrome_url_request_context.h ('k') | chrome/browser/profile.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/chrome_url_request_context.cc
===================================================================
--- chrome/browser/net/chrome_url_request_context.cc (revision 57697)
+++ chrome/browser/net/chrome_url_request_context.cc (working copy)
@@ -907,6 +907,7 @@
host_zoom_map_ = other->host_zoom_map_;
is_media_ = other->is_media_;
is_off_the_record_ = other->is_off_the_record_;
+ blob_storage_context_ = other->blob_storage_context_;
}
void ChromeURLRequestContext::OnAcceptLanguageChange(
@@ -989,6 +990,7 @@
cookie_monster_delegate_ = new ChromeCookieMonsterDelegate(profile);
appcache_service_ = profile->GetAppCacheService();
database_tracker_ = profile->GetDatabaseTracker();
+ blob_storage_context_ = profile->GetBlobStorageContext();
}
ChromeURLRequestContextFactory::~ChromeURLRequestContextFactory() {
@@ -1013,6 +1015,7 @@
context->set_ssl_config_service(ssl_config_service_);
context->set_appcache_service(appcache_service_);
context->set_database_tracker(database_tracker_);
+ context->set_blob_storage_context(blob_storage_context_);
}
// ----------------------------------------------------------------------------
« no previous file with comments | « chrome/browser/net/chrome_url_request_context.h ('k') | chrome/browser/profile.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698