| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 virtual bool IsManaged() OVERRIDE; | 45 virtual bool IsManaged() OVERRIDE; |
| 46 virtual ExtensionService* GetExtensionService() OVERRIDE; | 46 virtual ExtensionService* GetExtensionService() OVERRIDE; |
| 47 virtual ExtensionSpecialStoragePolicy* | 47 virtual ExtensionSpecialStoragePolicy* |
| 48 GetExtensionSpecialStoragePolicy() OVERRIDE; | 48 GetExtensionSpecialStoragePolicy() OVERRIDE; |
| 49 virtual PrefService* GetPrefs() OVERRIDE; | 49 virtual PrefService* GetPrefs() OVERRIDE; |
| 50 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; | 50 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; |
| 51 virtual net::URLRequestContextGetter* | 51 virtual net::URLRequestContextGetter* |
| 52 GetRequestContextForExtensions() OVERRIDE; | 52 GetRequestContextForExtensions() OVERRIDE; |
| 53 virtual net::URLRequestContextGetter* CreateRequestContext( | 53 virtual net::URLRequestContextGetter* CreateRequestContext( |
| 54 content::ProtocolHandlerMap* protocol_handlers, | 54 content::ProtocolHandlerMap* protocol_handlers, |
| 55 content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE; | 55 content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE; |
| 56 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 56 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| 57 const base::FilePath& partition_path, | 57 const base::FilePath& partition_path, |
| 58 bool in_memory, | 58 bool in_memory, |
| 59 content::ProtocolHandlerMap* protocol_handlers, | 59 content::ProtocolHandlerMap* protocol_handlers, |
| 60 content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE; | 60 content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE; |
| 61 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; | 61 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; |
| 62 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; | 62 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; |
| 63 virtual bool IsSameProfile(Profile* profile) OVERRIDE; | 63 virtual bool IsSameProfile(Profile* profile) OVERRIDE; |
| 64 virtual Time GetStartTime() const OVERRIDE; | 64 virtual Time GetStartTime() const OVERRIDE; |
| 65 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; | 65 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; |
| 66 virtual history::TopSites* GetTopSites() OVERRIDE; | 66 virtual history::TopSites* GetTopSites() OVERRIDE; |
| 67 virtual base::FilePath last_selected_directory() OVERRIDE; | 67 virtual base::FilePath last_selected_directory() OVERRIDE; |
| 68 virtual void set_last_selected_directory(const base::FilePath& path) OVERRIDE; | 68 virtual void set_last_selected_directory(const base::FilePath& path) OVERRIDE; |
| 69 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; | 69 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; |
| 70 virtual void SetExitType(ExitType exit_type) OVERRIDE; | 70 virtual void SetExitType(ExitType exit_type) OVERRIDE; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 base::FilePath last_selected_directory_; | 160 base::FilePath last_selected_directory_; |
| 161 | 161 |
| 162 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 162 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 163 | 163 |
| 164 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; | 164 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; |
| 165 | 165 |
| 166 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 166 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 167 }; | 167 }; |
| 168 | 168 |
| 169 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 169 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |