| Index: chrome/browser/net/chrome_url_request_context.h
|
| diff --git a/chrome/browser/net/chrome_url_request_context.h b/chrome/browser/net/chrome_url_request_context.h
|
| index 791805dc54e9469019c735618488e1fcc70b210b..bedb9a88baa35b5a815aea21b43f794710eb2484 100644
|
| --- a/chrome/browser/net/chrome_url_request_context.h
|
| +++ b/chrome/browser/net/chrome_url_request_context.h
|
| @@ -14,7 +14,6 @@
|
| #include "chrome/browser/chrome_blob_storage_context.h"
|
| #include "chrome/browser/content_settings/host_content_settings_map.h"
|
| #include "chrome/browser/extensions/extension_info_map.h"
|
| -#include "chrome/browser/file_system/browser_file_system_context.h"
|
| #include "chrome/browser/host_zoom_map.h"
|
| #include "chrome/browser/io_thread.h"
|
| #include "chrome/browser/net/chrome_cookie_policy.h"
|
| @@ -27,6 +26,7 @@
|
| #include "net/base/cookie_policy.h"
|
| #include "net/url_request/url_request_context.h"
|
| #include "webkit/database/database_tracker.h"
|
| +#include "webkit/fileapi/sandboxed_file_system_context.h"
|
|
|
| class CommandLine;
|
| class PrefService;
|
| @@ -71,8 +71,8 @@ class ChromeURLRequestContext : public URLRequestContext {
|
| }
|
|
|
| // Gets the file system host context with this context's profile.
|
| - BrowserFileSystemContext* browser_file_system_context() const {
|
| - return browser_file_system_context_.get();
|
| + fileapi::SandboxedFileSystemContext* file_system_context() const {
|
| + return file_system_context_.get();
|
| }
|
|
|
| bool is_off_the_record() const {
|
| @@ -177,8 +177,8 @@ class ChromeURLRequestContext : public URLRequestContext {
|
| void set_blob_storage_context(ChromeBlobStorageContext* context) {
|
| blob_storage_context_ = context;
|
| }
|
| - void set_browser_file_system_context(BrowserFileSystemContext* context) {
|
| - browser_file_system_context_ = context;
|
| + void set_file_system_context(fileapi::SandboxedFileSystemContext* context) {
|
| + file_system_context_ = context;
|
| }
|
| void set_extension_info_map(ExtensionInfoMap* map) {
|
| extension_info_map_ = map;
|
| @@ -207,7 +207,7 @@ class ChromeURLRequestContext : public URLRequestContext {
|
| scoped_refptr<HostContentSettingsMap> host_content_settings_map_;
|
| scoped_refptr<HostZoomMap> host_zoom_map_;
|
| scoped_refptr<ChromeBlobStorageContext> blob_storage_context_;
|
| - scoped_refptr<BrowserFileSystemContext> browser_file_system_context_;
|
| + scoped_refptr<fileapi::SandboxedFileSystemContext> file_system_context_;
|
| scoped_refptr<ExtensionInfoMap> extension_info_map_;
|
|
|
| bool is_media_;
|
| @@ -376,7 +376,7 @@ class ChromeURLRequestContextFactory {
|
| scoped_refptr<net::SSLConfigService> ssl_config_service_;
|
| scoped_refptr<net::CookieMonster::Delegate> cookie_monster_delegate_;
|
| scoped_refptr<ChromeBlobStorageContext> blob_storage_context_;
|
| - scoped_refptr<BrowserFileSystemContext> browser_file_system_context_;
|
| + scoped_refptr<fileapi::SandboxedFileSystemContext> file_system_context_;
|
| scoped_refptr<ExtensionInfoMap> extension_info_map_;
|
|
|
| FilePath profile_dir_path_;
|
|
|