| 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 24 matching lines...) Expand all Loading... |
| 35 virtual ~OffTheRecordProfileImpl(); | 35 virtual ~OffTheRecordProfileImpl(); |
| 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 IsManaged() OVERRIDE; | 45 virtual bool IsSupervised() 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::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE; | 55 content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE; |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 base::FilePath last_selected_directory_; | 161 base::FilePath last_selected_directory_; |
| 162 | 162 |
| 163 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 163 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 164 | 164 |
| 165 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; | 165 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; |
| 166 | 166 |
| 167 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 167 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 168 }; | 168 }; |
| 169 | 169 |
| 170 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 170 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |