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 58b353f37aab1fa512f9a43d7430b5afb33a23be..530790e69c9df30740b98d4c6e8cadb0f6ff6d30 100644 |
--- a/chrome/browser/net/chrome_url_request_context.cc |
+++ b/chrome/browser/net/chrome_url_request_context.cc |
@@ -850,7 +850,7 @@ ChromeURLRequestContext::ChromeURLRequestContext( |
is_media_ = other->is_media_; |
is_off_the_record_ = other->is_off_the_record_; |
blob_storage_context_ = other->blob_storage_context_; |
- browser_file_system_context_ = other->browser_file_system_context_; |
+ file_system_context_ = other->file_system_context_; |
extension_info_map_ = other->extension_info_map_; |
} |
@@ -919,7 +919,7 @@ ChromeURLRequestContextFactory::ChromeURLRequestContextFactory(Profile* profile) |
appcache_service_ = profile->GetAppCacheService(); |
database_tracker_ = profile->GetDatabaseTracker(); |
blob_storage_context_ = profile->GetBlobStorageContext(); |
- browser_file_system_context_ = profile->GetFileSystemContext(); |
+ file_system_context_ = profile->GetFileSystemContext(); |
extension_info_map_ = profile->GetExtensionInfoMap(); |
} |
@@ -945,6 +945,6 @@ void ChromeURLRequestContextFactory::ApplyProfileParametersToContext( |
context->set_appcache_service(appcache_service_); |
context->set_database_tracker(database_tracker_); |
context->set_blob_storage_context(blob_storage_context_); |
- context->set_browser_file_system_context(browser_file_system_context_); |
+ context->set_file_system_context(file_system_context_); |
context->set_extension_info_map(extension_info_map_); |
} |