| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 virtual void InitChromeOSPreferences() OVERRIDE; | 75 virtual void InitChromeOSPreferences() OVERRIDE; |
| 76 | 76 |
| 77 virtual void ChangeAppLocale(const std::string& locale, | 77 virtual void ChangeAppLocale(const std::string& locale, |
| 78 AppLocaleChangedVia) OVERRIDE; | 78 AppLocaleChangedVia) OVERRIDE; |
| 79 virtual void OnLogin() OVERRIDE; | 79 virtual void OnLogin() OVERRIDE; |
| 80 #endif // defined(OS_CHROMEOS) | 80 #endif // defined(OS_CHROMEOS) |
| 81 | 81 |
| 82 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; | 82 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; |
| 83 | 83 |
| 84 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; | 84 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; |
| 85 virtual void ClearNetworkingHistorySince(base::Time time) OVERRIDE; | 85 virtual void ClearNetworkingHistorySince( |
| 86 base::Time time, |
| 87 const base::Closure& completion) OVERRIDE; |
| 86 virtual GURL GetHomePage() OVERRIDE; | 88 virtual GURL GetHomePage() OVERRIDE; |
| 87 | 89 |
| 88 // content::BrowserContext implementation: | 90 // content::BrowserContext implementation: |
| 89 virtual FilePath GetPath() OVERRIDE; | 91 virtual FilePath GetPath() OVERRIDE; |
| 90 virtual bool IsOffTheRecord() const OVERRIDE; | 92 virtual bool IsOffTheRecord() const OVERRIDE; |
| 91 virtual content::DownloadManagerDelegate* | 93 virtual content::DownloadManagerDelegate* |
| 92 GetDownloadManagerDelegate() OVERRIDE; | 94 GetDownloadManagerDelegate() OVERRIDE; |
| 93 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; | 95 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; |
| 94 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( | 96 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( |
| 95 int renderer_child_id) OVERRIDE; | 97 int renderer_child_id) OVERRIDE; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 Time start_time_; | 141 Time start_time_; |
| 140 | 142 |
| 141 FilePath last_selected_directory_; | 143 FilePath last_selected_directory_; |
| 142 | 144 |
| 143 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 145 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 144 | 146 |
| 145 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 147 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 146 }; | 148 }; |
| 147 | 149 |
| 148 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 150 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |