| 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 | 35 |
| 36 // Profile implementation. | 36 // Profile implementation. |
| 37 virtual std::string GetProfileName() OVERRIDE; | 37 virtual std::string GetProfileName() OVERRIDE; |
| 38 virtual Profile* GetOffTheRecordProfile() OVERRIDE; | 38 virtual Profile* GetOffTheRecordProfile() OVERRIDE; |
| 39 virtual void DestroyOffTheRecordProfile() OVERRIDE; | 39 virtual void DestroyOffTheRecordProfile() OVERRIDE; |
| 40 virtual bool HasOffTheRecordProfile() OVERRIDE; | 40 virtual bool HasOffTheRecordProfile() OVERRIDE; |
| 41 virtual Profile* GetOriginalProfile() OVERRIDE; | 41 virtual Profile* GetOriginalProfile() OVERRIDE; |
| 42 virtual ExtensionService* GetExtensionService() OVERRIDE; | 42 virtual ExtensionService* GetExtensionService() OVERRIDE; |
| 43 virtual ExtensionSpecialStoragePolicy* | 43 virtual ExtensionSpecialStoragePolicy* |
| 44 GetExtensionSpecialStoragePolicy() OVERRIDE; | 44 GetExtensionSpecialStoragePolicy() OVERRIDE; |
| 45 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; | |
| 46 virtual policy::ManagedModePolicyProvider* | 45 virtual policy::ManagedModePolicyProvider* |
| 47 GetManagedModePolicyProvider() OVERRIDE; | 46 GetManagedModePolicyProvider() OVERRIDE; |
| 48 virtual policy::PolicyService* GetPolicyService() OVERRIDE; | 47 virtual policy::PolicyService* GetPolicyService() OVERRIDE; |
| 49 virtual PrefServiceSyncable* GetPrefs() OVERRIDE; | 48 virtual PrefServiceSyncable* GetPrefs() OVERRIDE; |
| 50 virtual PrefServiceSyncable* GetOffTheRecordPrefs() OVERRIDE; | 49 virtual PrefServiceSyncable* GetOffTheRecordPrefs() OVERRIDE; |
| 51 virtual net::URLRequestContextGetter* | 50 virtual net::URLRequestContextGetter* |
| 52 GetRequestContextForExtensions() OVERRIDE; | 51 GetRequestContextForExtensions() OVERRIDE; |
| 53 virtual net::URLRequestContextGetter* GetRequestContextForStoragePartition( | 52 virtual net::URLRequestContextGetter* GetRequestContextForStoragePartition( |
| 54 const FilePath& partition_path, | 53 const FilePath& partition_path, |
| 55 bool in_memory) OVERRIDE; | 54 bool in_memory) OVERRIDE; |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 Time start_time_; | 139 Time start_time_; |
| 141 | 140 |
| 142 FilePath last_selected_directory_; | 141 FilePath last_selected_directory_; |
| 143 | 142 |
| 144 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 143 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 145 | 144 |
| 146 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 145 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 147 }; | 146 }; |
| 148 | 147 |
| 149 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 148 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |