| Index: chrome/browser/profiles/profile_io_data.h
|
| diff --git a/chrome/browser/profiles/profile_io_data.h b/chrome/browser/profiles/profile_io_data.h
|
| index 14b1ef8555c4a975336896bc9b390527a70127a7..d995ae1aa738308a0b9cb79109c27b5ad5a34d82 100644
|
| --- a/chrome/browser/profiles/profile_io_data.h
|
| +++ b/chrome/browser/profiles/profile_io_data.h
|
| @@ -46,6 +46,10 @@ class SSLConfigService;
|
| class TransportSecurityState;
|
| } // namespace net
|
|
|
| +namespace policy {
|
| +class HostBlacklistManager;
|
| +} // namespace policy
|
| +
|
| namespace prerender {
|
| class PrerenderManager;
|
| }; // namespace prerender
|
| @@ -144,6 +148,7 @@ class ProfileIOData {
|
| scoped_refptr<ChromeBlobStorageContext> blob_storage_context;
|
| scoped_refptr<fileapi::FileSystemContext> file_system_context;
|
| scoped_refptr<quota::QuotaManager> quota_manager;
|
| + scoped_refptr<policy::HostBlacklistManager> host_blacklist_manager;
|
| scoped_refptr<ExtensionInfoMap> extension_info_map;
|
| DesktopNotificationService* notification_service;
|
| base::Callback<prerender::PrerenderManager*(void)> prerender_manager_getter;
|
| @@ -273,6 +278,7 @@ class ProfileIOData {
|
| mutable scoped_refptr<ChromeBlobStorageContext> blob_storage_context_;
|
| mutable scoped_refptr<fileapi::FileSystemContext> file_system_context_;
|
| mutable scoped_refptr<quota::QuotaManager> quota_manager_;
|
| + mutable scoped_refptr<policy::HostBlacklistManager> host_blacklist_manager_;
|
| mutable scoped_refptr<HostZoomMap> host_zoom_map_;
|
|
|
| // TODO(willchan): Remove from ResourceContext.
|
|
|