| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 content::URLRequestInterceptorScopedVector request_interceptors) override; | 55 content::URLRequestInterceptorScopedVector request_interceptors) override; |
| 56 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 56 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| 57 const base::FilePath& partition_path, | 57 const base::FilePath& partition_path, |
| 58 bool in_memory, | 58 bool in_memory, |
| 59 content::ProtocolHandlerMap* protocol_handlers, | 59 content::ProtocolHandlerMap* protocol_handlers, |
| 60 content::URLRequestInterceptorScopedVector request_interceptors) override; | 60 content::URLRequestInterceptorScopedVector request_interceptors) override; |
| 61 net::SSLConfigService* GetSSLConfigService() override; | 61 net::SSLConfigService* GetSSLConfigService() override; |
| 62 HostContentSettingsMap* GetHostContentSettingsMap() override; | 62 HostContentSettingsMap* GetHostContentSettingsMap() override; |
| 63 bool IsSameProfile(Profile* profile) override; | 63 bool IsSameProfile(Profile* profile) override; |
| 64 Time GetStartTime() const override; | 64 Time GetStartTime() const override; |
| 65 history::TopSites* GetTopSitesWithoutCreating() override; | |
| 66 history::TopSites* GetTopSites() override; | |
| 67 base::FilePath last_selected_directory() override; | 65 base::FilePath last_selected_directory() override; |
| 68 void set_last_selected_directory(const base::FilePath& path) override; | 66 void set_last_selected_directory(const base::FilePath& path) override; |
| 69 bool WasCreatedByVersionOrLater(const std::string& version) override; | 67 bool WasCreatedByVersionOrLater(const std::string& version) override; |
| 70 void SetExitType(ExitType exit_type) override; | 68 void SetExitType(ExitType exit_type) override; |
| 71 ExitType GetLastSessionExitType() override; | 69 ExitType GetLastSessionExitType() override; |
| 72 | 70 |
| 73 #if defined(OS_CHROMEOS) | 71 #if defined(OS_CHROMEOS) |
| 74 void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia) override; | 72 void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia) override; |
| 75 void OnLogin() override; | 73 void OnLogin() override; |
| 76 void InitChromeOSPreferences() override; | 74 void InitChromeOSPreferences() override; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 Time start_time_; | 138 Time start_time_; |
| 141 | 139 |
| 142 base::FilePath last_selected_directory_; | 140 base::FilePath last_selected_directory_; |
| 143 | 141 |
| 144 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 142 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 145 | 143 |
| 146 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 144 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 147 }; | 145 }; |
| 148 | 146 |
| 149 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 147 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |