summaryrefslogtreecommitdiffstats
path: root/chrome/browser/profile.h
diff options
context:
space:
mode:
authorjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-02 13:25:31 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-02 13:25:31 +0000
commitaa43b4d1623f3480929e8e5d659702a3eaacb769 (patch)
tree5fb50980e721b75cf5f5bec3c95fc0e7ae36e8f3 /chrome/browser/profile.h
parentd68ac2aace5bb58425b60162795ba48c819369c6 (diff)
downloadchromium_src-aa43b4d1623f3480929e8e5d659702a3eaacb769.zip
chromium_src-aa43b4d1623f3480929e8e5d659702a3eaacb769.tar.gz
chromium_src-aa43b4d1623f3480929e8e5d659702a3eaacb769.tar.bz2
Remove abonded privacy blacklist implementation.
BUG=16932 TEST=compiles Review URL: http://codereview.chromium.org/2862041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51525 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profile.h')
-rw-r--r--chrome/browser/profile.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/chrome/browser/profile.h b/chrome/browser/profile.h
index f493dac..77fc45f 100644
--- a/chrome/browser/profile.h
+++ b/chrome/browser/profile.h
@@ -37,7 +37,6 @@ class DatabaseTracker;
class AutocompleteClassifier;
class BackgroundContentsService;
-class Blacklist;
class BookmarkModel;
class BrowserThemeProvider;
class ChromeURLRequestContextGetter;
@@ -332,9 +331,6 @@ class Profile {
// Returns the geolocation permission context for this profile.
virtual GeolocationPermissionContext* GetGeolocationPermissionContext() = 0;
- // Returns the Privacy Blacklist for this profile.
- virtual Blacklist* GetPrivacyBlacklist() = 0;
-
// Returns the user style sheet watcher.
virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher() = 0;
@@ -525,7 +521,6 @@ class ProfileImpl : public Profile,
virtual HostZoomMap* GetHostZoomMap();
virtual GeolocationContentSettingsMap* GetGeolocationContentSettingsMap();
virtual GeolocationPermissionContext* GetGeolocationPermissionContext();
- virtual Blacklist* GetPrivacyBlacklist();
virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher();
virtual FindBarState* GetFindBarState();
virtual SessionService* GetSessionService();
@@ -623,7 +618,6 @@ class ProfileImpl : public Profile,
geolocation_content_settings_map_;
scoped_refptr<GeolocationPermissionContext>
geolocation_permission_context_;
- scoped_refptr<Blacklist> privacy_blacklist_;
scoped_refptr<UserStyleSheetWatcher> user_style_sheet_watcher_;
scoped_ptr<FindBarState> find_bar_state_;
scoped_refptr<DownloadManager> download_manager_;