| Index: chrome/browser/profiles/profile_impl.h
|
| diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h
|
| index 4fb1a511d005eb07c0e9333256f7f9147deb46f6..fcb7be2e418449e7b80d1d051ba9bf16995c8622 100644
|
| --- a/chrome/browser/profiles/profile_impl.h
|
| +++ b/chrome/browser/profiles/profile_impl.h
|
| @@ -62,6 +62,8 @@ class ProfileImpl : public Profile {
|
|
|
| // content::BrowserContext implementation:
|
| virtual base::FilePath GetPath() const OVERRIDE;
|
| + virtual bool IsOffTheRecord() const OVERRIDE;
|
| + virtual content::CookieStoreConfig GetCookieStoreConfig() OVERRIDE;
|
| virtual content::DownloadManagerDelegate*
|
| GetDownloadManagerDelegate() OVERRIDE;
|
| virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE;
|
| @@ -89,7 +91,6 @@ class ProfileImpl : public Profile {
|
| // Note that this implementation returns the Google-services username, if any,
|
| // not the Chrome user's display name.
|
| virtual std::string GetProfileName() OVERRIDE;
|
| - virtual bool IsOffTheRecord() const OVERRIDE;
|
| virtual Profile* GetOffTheRecordProfile() OVERRIDE;
|
| virtual void DestroyOffTheRecordProfile() OVERRIDE;
|
| virtual bool HasOffTheRecordProfile() OVERRIDE;
|
| @@ -101,8 +102,6 @@ class ProfileImpl : public Profile {
|
| GetExtensionSpecialStoragePolicy() OVERRIDE;
|
| virtual PrefService* GetPrefs() OVERRIDE;
|
| virtual PrefService* GetOffTheRecordPrefs() OVERRIDE;
|
| - virtual net::URLRequestContextGetter*
|
| - GetRequestContextForExtensions() OVERRIDE;
|
| virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE;
|
| virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE;
|
| virtual bool IsSameProfile(Profile* profile) OVERRIDE;
|
| @@ -253,6 +252,8 @@ class ProfileImpl : public Profile {
|
|
|
| scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
|
|
|
| + scoped_refptr<net::CookieMonsterDelegate> cookie_delegate_;
|
| +
|
| // STOP!!!! DO NOT ADD ANY MORE ITEMS HERE!!!!
|
| //
|
| // Instead, make your Service/Manager/whatever object you're hanging off the
|
|
|