| 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..e1e6b8733decbddbc471fb9cecb9f86c56038e6a 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( | 
| @@ -89,6 +87,10 @@ class OffTheRecordProfileImpl : public Profile { | 
| virtual bool IsOffTheRecord() const OVERRIDE; | 
| virtual content::DownloadManagerDelegate* | 
| GetDownloadManagerDelegate() OVERRIDE; | 
| +  virtual void OverrideCookieStoreConfigs(const base::FilePath& partition_path, | 
| +                                          bool in_memory_partition, | 
| +                                          bool is_default_partition, | 
| +                                          CookieSchemeMap* configs) OVERRIDE; | 
| virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; | 
| virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( | 
| int renderer_child_id) OVERRIDE; | 
| @@ -140,6 +142,8 @@ class OffTheRecordProfileImpl : public Profile { | 
|  | 
| content::HostZoomMap::ZoomLevelChangedCallback zoom_callback_; | 
|  | 
| +  scoped_refptr<net::CookieMonsterDelegate> cookie_delegate_; | 
| + | 
| DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 
| }; | 
|  | 
|  |