| 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 22 matching lines...) Expand all Loading... |
| 33 void Init(); | 33 void Init(); |
| 34 | 34 |
| 35 // Profile implementation. | 35 // Profile implementation. |
| 36 virtual std::string GetProfileName() OVERRIDE; | 36 virtual std::string GetProfileName() OVERRIDE; |
| 37 virtual Profile* GetOffTheRecordProfile() OVERRIDE; | 37 virtual Profile* GetOffTheRecordProfile() OVERRIDE; |
| 38 virtual void DestroyOffTheRecordProfile() OVERRIDE; | 38 virtual void DestroyOffTheRecordProfile() OVERRIDE; |
| 39 virtual bool HasOffTheRecordProfile() OVERRIDE; | 39 virtual bool HasOffTheRecordProfile() OVERRIDE; |
| 40 virtual Profile* GetOriginalProfile() OVERRIDE; | 40 virtual Profile* GetOriginalProfile() OVERRIDE; |
| 41 virtual VisitedLinkMaster* GetVisitedLinkMaster() OVERRIDE; | 41 virtual VisitedLinkMaster* GetVisitedLinkMaster() OVERRIDE; |
| 42 virtual ExtensionService* GetExtensionService() OVERRIDE; | 42 virtual ExtensionService* GetExtensionService() OVERRIDE; |
| 43 virtual UserScriptMaster* GetUserScriptMaster() OVERRIDE; | 43 virtual extensions::UserScriptMaster* GetUserScriptMaster() OVERRIDE; |
| 44 virtual ExtensionProcessManager* GetExtensionProcessManager() OVERRIDE; | 44 virtual ExtensionProcessManager* GetExtensionProcessManager() OVERRIDE; |
| 45 virtual ExtensionEventRouter* GetExtensionEventRouter() OVERRIDE; | 45 virtual ExtensionEventRouter* GetExtensionEventRouter() OVERRIDE; |
| 46 virtual ExtensionSpecialStoragePolicy* | 46 virtual ExtensionSpecialStoragePolicy* |
| 47 GetExtensionSpecialStoragePolicy() OVERRIDE; | 47 GetExtensionSpecialStoragePolicy() OVERRIDE; |
| 48 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; | 48 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; |
| 49 virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE; | 49 virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE; |
| 50 virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE; | 50 virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE; |
| 51 virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE; | 51 virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE; |
| 52 virtual policy::PolicyService* GetPolicyService() OVERRIDE; | 52 virtual policy::PolicyService* GetPolicyService() OVERRIDE; |
| 53 virtual PrefService* GetPrefs() OVERRIDE; | 53 virtual PrefService* GetPrefs() OVERRIDE; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 Time start_time_; | 132 Time start_time_; |
| 133 | 133 |
| 134 FilePath last_selected_directory_; | 134 FilePath last_selected_directory_; |
| 135 | 135 |
| 136 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 136 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 137 | 137 |
| 138 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 138 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 139 }; | 139 }; |
| 140 | 140 |
| 141 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 141 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |