| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 virtual void InitPromoResources() OVERRIDE; | 107 virtual void InitPromoResources() OVERRIDE; |
| 108 virtual void InitRegisteredProtocolHandlers() OVERRIDE; | 108 virtual void InitRegisteredProtocolHandlers() OVERRIDE; |
| 109 virtual FilePath last_selected_directory() OVERRIDE; | 109 virtual FilePath last_selected_directory() OVERRIDE; |
| 110 virtual void set_last_selected_directory(const FilePath& path) OVERRIDE; | 110 virtual void set_last_selected_directory(const FilePath& path) OVERRIDE; |
| 111 | 111 |
| 112 #if defined(OS_CHROMEOS) | 112 #if defined(OS_CHROMEOS) |
| 113 virtual void SetupChromeOSEnterpriseExtensionObserver() OVERRIDE; | 113 virtual void SetupChromeOSEnterpriseExtensionObserver() OVERRIDE; |
| 114 virtual void InitChromeOSPreferences() OVERRIDE; | 114 virtual void InitChromeOSPreferences() OVERRIDE; |
| 115 #endif // defined(OS_CHROMEOS) | 115 #endif // defined(OS_CHROMEOS) |
| 116 | 116 |
| 117 virtual void ExitedOffTheRecordMode(); | |
| 118 virtual void OnBrowserAdded(const Browser* browser) OVERRIDE; | 117 virtual void OnBrowserAdded(const Browser* browser) OVERRIDE; |
| 119 virtual void OnBrowserRemoved(const Browser* browser) OVERRIDE; | 118 virtual void OnBrowserRemoved(const Browser* browser) OVERRIDE; |
| 120 virtual ChromeBlobStorageContext* GetBlobStorageContext() OVERRIDE; | 119 virtual ChromeBlobStorageContext* GetBlobStorageContext() OVERRIDE; |
| 121 virtual ExtensionInfoMap* GetExtensionInfoMap() OVERRIDE; | 120 virtual ExtensionInfoMap* GetExtensionInfoMap() OVERRIDE; |
| 122 virtual ChromeURLDataManager* GetChromeURLDataManager() OVERRIDE; | 121 virtual ChromeURLDataManager* GetChromeURLDataManager() OVERRIDE; |
| 123 virtual PromoCounter* GetInstantPromoCounter() OVERRIDE; | 122 virtual PromoCounter* GetInstantPromoCounter() OVERRIDE; |
| 124 | 123 |
| 125 #if defined(OS_CHROMEOS) | 124 #if defined(OS_CHROMEOS) |
| 126 virtual void ChangeAppLocale(const std::string& locale, | 125 virtual void ChangeAppLocale(const std::string& locale, |
| 127 AppLocaleChangedVia) OVERRIDE; | 126 AppLocaleChangedVia) OVERRIDE; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 205 |
| 207 scoped_refptr<quota::QuotaManager> quota_manager_; | 206 scoped_refptr<quota::QuotaManager> quota_manager_; |
| 208 | 207 |
| 209 // Used read-only. | 208 // Used read-only. |
| 210 scoped_refptr<TransportSecurityPersister> transport_security_loader_; | 209 scoped_refptr<TransportSecurityPersister> transport_security_loader_; |
| 211 | 210 |
| 212 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 211 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 213 }; | 212 }; |
| 214 | 213 |
| 215 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 214 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |