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

Unified Diff: chrome/browser/profiles/profile_io_data.h

Issue 7747018: Introduced the URLBlacklistManager, and wired it to various places. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reviewed, rebased Created 9 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
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_;
willchan no longer on Chromium 2011/08/26 11:40:21 Where does ResourceContext use this? I don't see i
Joao da Silva 2011/08/29 11:24:25 My bad, it's actually pointed to be the network de
mutable scoped_refptr<HostZoomMap> host_zoom_map_;
// TODO(willchan): Remove from ResourceContext.

Powered by Google App Engine
This is Rietveld 408576698