| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 virtual ~OffTheRecordProfileImpl(); | 33 virtual ~OffTheRecordProfileImpl(); |
| 34 void Init(); | 34 void Init(); |
| 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 VisitedLinkMaster* GetVisitedLinkMaster() OVERRIDE; | 42 virtual VisitedLinkMaster* GetVisitedLinkMaster() OVERRIDE; |
| 43 virtual ExtensionPrefValueMap* GetExtensionPrefValueMap() OVERRIDE; | |
| 44 virtual ExtensionService* GetExtensionService() OVERRIDE; | 43 virtual ExtensionService* GetExtensionService() OVERRIDE; |
| 45 virtual UserScriptMaster* GetUserScriptMaster() OVERRIDE; | 44 virtual UserScriptMaster* GetUserScriptMaster() OVERRIDE; |
| 46 virtual ExtensionProcessManager* GetExtensionProcessManager() OVERRIDE; | 45 virtual ExtensionProcessManager* GetExtensionProcessManager() OVERRIDE; |
| 47 virtual ExtensionEventRouter* GetExtensionEventRouter() OVERRIDE; | 46 virtual ExtensionEventRouter* GetExtensionEventRouter() OVERRIDE; |
| 48 virtual ExtensionSpecialStoragePolicy* | 47 virtual ExtensionSpecialStoragePolicy* |
| 49 GetExtensionSpecialStoragePolicy() OVERRIDE; | 48 GetExtensionSpecialStoragePolicy() OVERRIDE; |
| 50 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; | 49 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; |
| 51 virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE; | 50 virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE; |
| 52 virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE; | 51 virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE; |
| 53 virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE; | 52 virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 FilePath last_selected_directory_; | 138 FilePath last_selected_directory_; |
| 140 | 139 |
| 141 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 140 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 142 | 141 |
| 143 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 142 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
| 144 | 143 |
| 145 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 144 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 146 }; | 145 }; |
| 147 | 146 |
| 148 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 147 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |