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

Unified Diff: chrome/browser/profiles/profile_impl.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_impl.h
diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h
index aa1fee11a06c9f20f06c7163764cf469340cc1b3..146a67a898e282aeac0574fe67831b2a843f087a 100644
--- a/chrome/browser/profiles/profile_impl.h
+++ b/chrome/browser/profiles/profile_impl.h
@@ -22,6 +22,7 @@ class ChromeDownloadManagerDelegate;
class ExtensionPrefs;
class ExtensionPrefValueMap;
class ExtensionSettings;
+class NetPrefObserver;
class PrefService;
class SpellCheckProfile;
@@ -33,8 +34,6 @@ class Preferences;
}
#endif
-class NetPrefObserver;
-
// The default profile implementation.
class ProfileImpl : public Profile,
public NotificationObserver {
@@ -124,6 +123,7 @@ class ProfileImpl : public Profile,
virtual PromoCounter* GetInstantPromoCounter();
virtual BrowserSignin* GetBrowserSignin();
virtual ChromeURLDataManager* GetChromeURLDataManager();
+ virtual policy::HostBlacklistManager* GetHostBlacklistManager();
#if defined(OS_CHROMEOS)
virtual void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia);
@@ -291,6 +291,8 @@ class ProfileImpl : public Profile,
scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_;
+ scoped_refptr<policy::HostBlacklistManager> host_blacklist_manager_;
+
Profile::Delegate* delegate_;
DISALLOW_COPY_AND_ASSIGN(ProfileImpl);

Powered by Google App Engine
This is Rietveld 408576698