| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 5 #ifndef CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| 6 #define CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 6 #define CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 virtual PrefService* GetPrefs() OVERRIDE; | 48 virtual PrefService* GetPrefs() OVERRIDE; |
| 49 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; | 49 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; |
| 50 virtual net::URLRequestContextGetter* | 50 virtual net::URLRequestContextGetter* |
| 51 GetRequestContextForExtensions() OVERRIDE; | 51 GetRequestContextForExtensions() OVERRIDE; |
| 52 virtual net::URLRequestContextGetter* CreateRequestContext( | 52 virtual net::URLRequestContextGetter* CreateRequestContext( |
| 53 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 53 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 54 blob_protocol_handler, | 54 blob_protocol_handler, |
| 55 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 55 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 56 file_system_protocol_handler, | 56 file_system_protocol_handler, |
| 57 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 57 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 58 developer_protocol_handler, | |
| 59 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | |
| 60 chrome_protocol_handler, | 58 chrome_protocol_handler, |
| 61 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 59 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 62 chrome_devtools_protocol_handler) OVERRIDE; | 60 chrome_devtools_protocol_handler) OVERRIDE; |
| 63 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 61 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| 64 const base::FilePath& partition_path, | 62 const base::FilePath& partition_path, |
| 65 bool in_memory, | 63 bool in_memory, |
| 66 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 64 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 67 blob_protocol_handler, | 65 blob_protocol_handler, |
| 68 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 66 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 69 file_system_protocol_handler, | 67 file_system_protocol_handler, |
| 70 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 68 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 71 developer_protocol_handler, | |
| 72 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | |
| 73 chrome_protocol_handler, | 69 chrome_protocol_handler, |
| 74 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 70 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 75 chrome_devtools_protocol_handler) OVERRIDE; | 71 chrome_devtools_protocol_handler) OVERRIDE; |
| 76 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; | 72 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; |
| 77 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; | 73 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; |
| 78 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; | 74 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; |
| 79 virtual bool IsSameProfile(Profile* profile) OVERRIDE; | 75 virtual bool IsSameProfile(Profile* profile) OVERRIDE; |
| 80 virtual Time GetStartTime() const OVERRIDE; | 76 virtual Time GetStartTime() const OVERRIDE; |
| 81 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; | 77 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; |
| 82 virtual history::TopSites* GetTopSites() OVERRIDE; | 78 virtual history::TopSites* GetTopSites() OVERRIDE; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 base::FilePath last_selected_directory_; | 149 base::FilePath last_selected_directory_; |
| 154 | 150 |
| 155 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 151 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 156 | 152 |
| 157 content::HostZoomMap::ZoomLevelChangedCallback zoom_callback_; | 153 content::HostZoomMap::ZoomLevelChangedCallback zoom_callback_; |
| 158 | 154 |
| 159 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 155 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 160 }; | 156 }; |
| 161 | 157 |
| 162 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 158 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |