diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-29 22:42:48 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-29 22:42:48 +0000 |
commit | b75858a2c0bdb08b5324e2610d04498aadc9f600 (patch) | |
tree | c073defc27e3d23cba4720fcd3244dee63a6a0cc /chrome/browser/profile.h | |
parent | ea3d1d84be3d6f97bf50e76511c9e26af6895533 (diff) | |
download | chromium_src-b75858a2c0bdb08b5324e2610d04498aadc9f600.zip chromium_src-b75858a2c0bdb08b5324e2610d04498aadc9f600.tar.gz chromium_src-b75858a2c0bdb08b5324e2610d04498aadc9f600.tar.bz2 |
Revert r37535.
There was no LGTM, and there was still open discussion in the code review. See
http://codereview.chromium.org/554119. This was not ready to land.
TBR=pkasting
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/553154
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37556 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profile.h')
-rw-r--r-- | chrome/browser/profile.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/chrome/browser/profile.h b/chrome/browser/profile.h index 3548a34..6f97fec 100644 --- a/chrome/browser/profile.h +++ b/chrome/browser/profile.h @@ -33,7 +33,6 @@ class DatabaseTracker; class Blacklist; class BookmarkModel; class BrowserThemeProvider; -class ChromeCookiePolicy; class ChromeURLRequestContextGetter; class DesktopNotificationService; class DownloadManager; @@ -309,9 +308,6 @@ class Profile { // should always check the return value for NULL. virtual SessionService* GetSessionService() = 0; - // Returns the cookie policy for this profile. - virtual ChromeCookiePolicy* GetCookiePolicy() = 0; - // If this profile has a session service, it is shut down. To properly record // the current state this forces creation of the session service, then shuts // it down. @@ -449,7 +445,6 @@ class ProfileImpl : public Profile, virtual HostZoomMap* GetHostZoomMap(); virtual Blacklist* GetPrivacyBlacklist(); virtual SessionService* GetSessionService(); - virtual ChromeCookiePolicy* GetCookiePolicy(); virtual void ShutdownSessionService(); virtual bool HasSessionService() const; virtual bool DidLastSessionExitCleanly(); @@ -534,7 +529,6 @@ class ProfileImpl : public Profile, scoped_ptr<HostContentSettingsMap> host_content_settings_map_; scoped_refptr<HostZoomMap> host_zoom_map_; scoped_ptr<Blacklist> privacy_blacklist_; - scoped_ptr<ChromeCookiePolicy> cookie_policy_; scoped_refptr<DownloadManager> download_manager_; scoped_refptr<HistoryService> history_service_; scoped_refptr<FaviconService> favicon_service_; |