| 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 25 matching lines...) Expand all Loading... |
| 36 void Init(); | 36 void Init(); |
| 37 | 37 |
| 38 // Profile implementation. | 38 // Profile implementation. |
| 39 virtual std::string GetProfileName() OVERRIDE; | 39 virtual std::string GetProfileName() OVERRIDE; |
| 40 virtual ProfileType GetProfileType() const OVERRIDE; | 40 virtual ProfileType GetProfileType() const OVERRIDE; |
| 41 virtual Profile* GetOffTheRecordProfile() OVERRIDE; | 41 virtual Profile* GetOffTheRecordProfile() OVERRIDE; |
| 42 virtual void DestroyOffTheRecordProfile() OVERRIDE; | 42 virtual void DestroyOffTheRecordProfile() OVERRIDE; |
| 43 virtual bool HasOffTheRecordProfile() OVERRIDE; | 43 virtual bool HasOffTheRecordProfile() OVERRIDE; |
| 44 virtual Profile* GetOriginalProfile() OVERRIDE; | 44 virtual Profile* GetOriginalProfile() OVERRIDE; |
| 45 virtual bool IsSupervised() OVERRIDE; | 45 virtual bool IsSupervised() OVERRIDE; |
| 46 virtual ExtensionService* GetExtensionService() OVERRIDE; | |
| 47 virtual ExtensionSpecialStoragePolicy* | 46 virtual ExtensionSpecialStoragePolicy* |
| 48 GetExtensionSpecialStoragePolicy() OVERRIDE; | 47 GetExtensionSpecialStoragePolicy() OVERRIDE; |
| 49 virtual PrefService* GetPrefs() OVERRIDE; | 48 virtual PrefService* GetPrefs() OVERRIDE; |
| 50 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; | 49 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; |
| 51 virtual net::URLRequestContextGetter* | 50 virtual net::URLRequestContextGetter* |
| 52 GetRequestContextForExtensions() OVERRIDE; | 51 GetRequestContextForExtensions() OVERRIDE; |
| 53 virtual net::URLRequestContextGetter* CreateRequestContext( | 52 virtual net::URLRequestContextGetter* CreateRequestContext( |
| 54 content::ProtocolHandlerMap* protocol_handlers, | 53 content::ProtocolHandlerMap* protocol_handlers, |
| 55 content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE; | 54 content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE; |
| 56 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 55 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 base::FilePath last_selected_directory_; | 135 base::FilePath last_selected_directory_; |
| 137 | 136 |
| 138 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 137 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 139 | 138 |
| 140 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; | 139 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; |
| 141 | 140 |
| 142 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 141 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 143 }; | 142 }; |
| 144 | 143 |
| 145 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 144 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |