| 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/macros.h" | 10 #include "base/macros.h" |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 content::URLRequestInterceptorScopedVector request_interceptors) override; | 60 content::URLRequestInterceptorScopedVector request_interceptors) override; |
| 61 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 61 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| 62 const base::FilePath& partition_path, | 62 const base::FilePath& partition_path, |
| 63 bool in_memory, | 63 bool in_memory, |
| 64 content::ProtocolHandlerMap* protocol_handlers, | 64 content::ProtocolHandlerMap* protocol_handlers, |
| 65 content::URLRequestInterceptorScopedVector request_interceptors) override; | 65 content::URLRequestInterceptorScopedVector request_interceptors) override; |
| 66 net::URLRequestContextGetter* CreateMediaRequestContext() override; | 66 net::URLRequestContextGetter* CreateMediaRequestContext() override; |
| 67 net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition( | 67 net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition( |
| 68 const base::FilePath& partition_path, | 68 const base::FilePath& partition_path, |
| 69 bool in_memory) override; | 69 bool in_memory) override; |
| 70 void RegisterInProcessServices(StaticServiceMap* services) override; |
| 70 net::SSLConfigService* GetSSLConfigService() override; | 71 net::SSLConfigService* GetSSLConfigService() override; |
| 71 bool IsSameProfile(Profile* profile) override; | 72 bool IsSameProfile(Profile* profile) override; |
| 72 Time GetStartTime() const override; | 73 Time GetStartTime() const override; |
| 73 base::FilePath last_selected_directory() override; | 74 base::FilePath last_selected_directory() override; |
| 74 void set_last_selected_directory(const base::FilePath& path) override; | 75 void set_last_selected_directory(const base::FilePath& path) override; |
| 75 bool WasCreatedByVersionOrLater(const std::string& version) override; | 76 bool WasCreatedByVersionOrLater(const std::string& version) override; |
| 76 void SetExitType(ExitType exit_type) override; | 77 void SetExitType(ExitType exit_type) override; |
| 77 ExitType GetLastSessionExitType() override; | 78 ExitType GetLastSessionExitType() override; |
| 78 | 79 |
| 79 #if defined(OS_CHROMEOS) | 80 #if defined(OS_CHROMEOS) |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 Time start_time_; | 138 Time start_time_; |
| 138 | 139 |
| 139 base::FilePath last_selected_directory_; | 140 base::FilePath last_selected_directory_; |
| 140 | 141 |
| 141 std::unique_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 142 std::unique_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 142 | 143 |
| 143 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 144 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 144 }; | 145 }; |
| 145 | 146 |
| 146 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 147 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |