| Index: chrome/browser/net/chrome_url_request_context.h
|
| ===================================================================
|
| --- chrome/browser/net/chrome_url_request_context.h (revision 57697)
|
| +++ chrome/browser/net/chrome_url_request_context.h (working copy)
|
| @@ -13,6 +13,7 @@
|
| #include "base/file_path.h"
|
| #include "base/linked_ptr.h"
|
| #include "chrome/browser/appcache/chrome_appcache_service.h"
|
| +#include "chrome/browser/chrome_blob_storage_context.h"
|
| #include "chrome/browser/host_content_settings_map.h"
|
| #include "chrome/browser/host_zoom_map.h"
|
| #include "chrome/browser/io_thread.h"
|
| @@ -111,6 +112,11 @@
|
| return database_tracker_.get();
|
| }
|
|
|
| + // Gets the blob storage context associated with this context's profile.
|
| + ChromeBlobStorageContext* blob_storage_context() const {
|
| + return blob_storage_context_.get();
|
| + }
|
| +
|
| bool is_off_the_record() const {
|
| return is_off_the_record_;
|
| }
|
| @@ -213,6 +219,9 @@
|
| void set_database_tracker(webkit_database::DatabaseTracker* tracker) {
|
| database_tracker_ = tracker;
|
| }
|
| + void set_blob_storage_context(ChromeBlobStorageContext* context) {
|
| + blob_storage_context_ = context;
|
| + }
|
| void set_net_log(net::NetLog* net_log) {
|
| net_log_ = net_log;
|
| }
|
| @@ -238,6 +247,7 @@
|
| scoped_refptr<ChromeCookiePolicy> chrome_cookie_policy_;
|
| scoped_refptr<HostContentSettingsMap> host_content_settings_map_;
|
| scoped_refptr<HostZoomMap> host_zoom_map_;
|
| + scoped_refptr<ChromeBlobStorageContext> blob_storage_context_;
|
|
|
| bool is_media_;
|
| bool is_off_the_record_;
|
| @@ -400,6 +410,7 @@
|
| scoped_refptr<net::TransportSecurityState> transport_security_state_;
|
| scoped_refptr<net::SSLConfigService> ssl_config_service_;
|
| scoped_refptr<net::CookieMonster::Delegate> cookie_monster_delegate_;
|
| + scoped_refptr<ChromeBlobStorageContext> blob_storage_context_;
|
|
|
| FilePath profile_dir_path_;
|
|
|
|
|