| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 virtual net::URLRequestContextGetter* GetRequestContextForStoragePartition( | 52 virtual net::URLRequestContextGetter* GetRequestContextForStoragePartition( |
| 53 const FilePath& partition_path, | 53 const FilePath& partition_path, |
| 54 bool in_memory) OVERRIDE; | 54 bool in_memory) OVERRIDE; |
| 55 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; | 55 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; |
| 56 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; | 56 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; |
| 57 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; | 57 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; |
| 58 virtual bool IsSameProfile(Profile* profile) OVERRIDE; | 58 virtual bool IsSameProfile(Profile* profile) OVERRIDE; |
| 59 virtual Time GetStartTime() const OVERRIDE; | 59 virtual Time GetStartTime() const OVERRIDE; |
| 60 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; | 60 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; |
| 61 virtual history::TopSites* GetTopSites() OVERRIDE; | 61 virtual history::TopSites* GetTopSites() OVERRIDE; |
| 62 virtual void InitPromoResources() OVERRIDE; | |
| 63 virtual FilePath last_selected_directory() OVERRIDE; | 62 virtual FilePath last_selected_directory() OVERRIDE; |
| 64 virtual void set_last_selected_directory(const FilePath& path) OVERRIDE; | 63 virtual void set_last_selected_directory(const FilePath& path) OVERRIDE; |
| 65 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; | 64 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; |
| 66 virtual void SetExitType(ExitType exit_type) OVERRIDE; | 65 virtual void SetExitType(ExitType exit_type) OVERRIDE; |
| 67 virtual ExitType GetLastSessionExitType() OVERRIDE; | 66 virtual ExitType GetLastSessionExitType() OVERRIDE; |
| 68 | 67 |
| 69 #if defined(OS_CHROMEOS) | 68 #if defined(OS_CHROMEOS) |
| 70 virtual void SetupChromeOSEnterpriseExtensionObserver() OVERRIDE; | 69 virtual void SetupChromeOSEnterpriseExtensionObserver() OVERRIDE; |
| 71 virtual void InitChromeOSPreferences() OVERRIDE; | 70 virtual void InitChromeOSPreferences() OVERRIDE; |
| 72 | 71 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 Time start_time_; | 138 Time start_time_; |
| 140 | 139 |
| 141 FilePath last_selected_directory_; | 140 FilePath last_selected_directory_; |
| 142 | 141 |
| 143 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 142 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 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 |