| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; | 62 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; |
| 63 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; | 63 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; |
| 64 virtual BookmarkModel* GetBookmarkModel() OVERRIDE; | 64 virtual BookmarkModel* GetBookmarkModel() OVERRIDE; |
| 65 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; | 65 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; |
| 66 virtual bool IsSameProfile(Profile* profile) OVERRIDE; | 66 virtual bool IsSameProfile(Profile* profile) OVERRIDE; |
| 67 virtual Time GetStartTime() const OVERRIDE; | 67 virtual Time GetStartTime() const OVERRIDE; |
| 68 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; | 68 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; |
| 69 virtual history::TopSites* GetTopSites() OVERRIDE; | 69 virtual history::TopSites* GetTopSites() OVERRIDE; |
| 70 virtual void MarkAsCleanShutdown() OVERRIDE; | 70 virtual void MarkAsCleanShutdown() OVERRIDE; |
| 71 virtual void InitPromoResources() OVERRIDE; | 71 virtual void InitPromoResources() OVERRIDE; |
| 72 virtual void InitRegisteredProtocolHandlers() OVERRIDE; | |
| 73 virtual FilePath last_selected_directory() OVERRIDE; | 72 virtual FilePath last_selected_directory() OVERRIDE; |
| 74 virtual void set_last_selected_directory(const FilePath& path) OVERRIDE; | 73 virtual void set_last_selected_directory(const FilePath& path) OVERRIDE; |
| 75 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; | 74 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; |
| 76 | 75 |
| 77 #if defined(OS_CHROMEOS) | 76 #if defined(OS_CHROMEOS) |
| 78 virtual void SetupChromeOSEnterpriseExtensionObserver() OVERRIDE; | 77 virtual void SetupChromeOSEnterpriseExtensionObserver() OVERRIDE; |
| 79 virtual void InitChromeOSPreferences() OVERRIDE; | 78 virtual void InitChromeOSPreferences() OVERRIDE; |
| 80 | 79 |
| 81 virtual void ChangeAppLocale(const std::string& locale, | 80 virtual void ChangeAppLocale(const std::string& locale, |
| 82 AppLocaleChangedVia) OVERRIDE; | 81 AppLocaleChangedVia) OVERRIDE; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 Time start_time_; | 134 Time start_time_; |
| 136 | 135 |
| 137 FilePath last_selected_directory_; | 136 FilePath last_selected_directory_; |
| 138 | 137 |
| 139 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 138 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 140 | 139 |
| 141 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 140 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 142 }; | 141 }; |
| 143 | 142 |
| 144 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 143 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |