| Index: chrome/browser/profiles/off_the_record_profile_impl.h
|
| diff --git a/chrome/browser/profiles/off_the_record_profile_impl.h b/chrome/browser/profiles/off_the_record_profile_impl.h
|
| index c43ad0abd59d42e20809be410bff3e5cd657b913..c2f670dec14e5aaac0fc2ad7296c31d72d4ab688 100644
|
| --- a/chrome/browser/profiles/off_the_record_profile_impl.h
|
| +++ b/chrome/browser/profiles/off_the_record_profile_impl.h
|
| @@ -45,8 +45,6 @@ class OffTheRecordProfileImpl : public Profile {
|
| GetExtensionSpecialStoragePolicy() OVERRIDE;
|
| virtual PrefService* GetPrefs() OVERRIDE;
|
| virtual PrefService* GetOffTheRecordPrefs() OVERRIDE;
|
| - virtual net::URLRequestContextGetter*
|
| - GetRequestContextForExtensions() OVERRIDE;
|
| virtual net::URLRequestContextGetter* CreateRequestContext(
|
| content::ProtocolHandlerMap* protocol_handlers) OVERRIDE;
|
| virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
|
| @@ -84,6 +82,7 @@ class OffTheRecordProfileImpl : public Profile {
|
|
|
| // content::BrowserContext implementation:
|
| virtual base::FilePath GetPath() const OVERRIDE;
|
| + virtual content::CookieStoreConfig GetCookieStoreConfig() OVERRIDE;
|
| virtual scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() OVERRIDE;
|
| virtual bool IsOffTheRecord() const OVERRIDE;
|
| virtual content::DownloadManagerDelegate*
|
| @@ -139,6 +138,8 @@ class OffTheRecordProfileImpl : public Profile {
|
|
|
| content::HostZoomMap::ZoomLevelChangedCallback zoom_callback_;
|
|
|
| + scoped_refptr<net::CookieMonsterDelegate> cookie_delegate_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl);
|
| };
|
|
|
|
|