| 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 85fced7b7bcf2ecbddea7169a233771ba074572a..098d059a5b73d8cdab92b3097d71c3c636007812 100644
|
| --- a/chrome/browser/profiles/off_the_record_profile_impl.h
|
| +++ b/chrome/browser/profiles/off_the_record_profile_impl.h
|
| @@ -46,8 +46,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(
|
| @@ -85,6 +83,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*
|
| @@ -140,6 +139,8 @@ class OffTheRecordProfileImpl : public Profile {
|
|
|
| content::HostZoomMap::ZoomLevelChangedCallback zoom_callback_;
|
|
|
| + scoped_refptr<net::CookieMonsterDelegate> cookie_delegate_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl);
|
| };
|
|
|
|
|