| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 #endif // defined(OS_CHROMEOS) | 100 #endif // defined(OS_CHROMEOS) |
| 101 | 101 |
| 102 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; | 102 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; |
| 103 | 103 |
| 104 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; | 104 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; |
| 105 virtual void ClearNetworkingHistorySince(base::Time time) OVERRIDE; | 105 virtual void ClearNetworkingHistorySince(base::Time time) OVERRIDE; |
| 106 virtual GURL GetHomePage() OVERRIDE; | 106 virtual GURL GetHomePage() OVERRIDE; |
| 107 | 107 |
| 108 // content::BrowserContext implementation: | 108 // content::BrowserContext implementation: |
| 109 virtual FilePath GetPath() OVERRIDE; | 109 virtual FilePath GetPath() OVERRIDE; |
| 110 virtual bool IsOffTheRecord() OVERRIDE; | 110 virtual bool IsOffTheRecord() const OVERRIDE; |
| 111 virtual content::DownloadManager* GetDownloadManager() OVERRIDE; | 111 virtual content::DownloadManager* GetDownloadManager() OVERRIDE; |
| 112 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; | 112 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; |
| 113 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( | 113 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( |
| 114 int renderer_child_id) OVERRIDE; | 114 int renderer_child_id) OVERRIDE; |
| 115 virtual net::URLRequestContextGetter* GetRequestContextForMedia() OVERRIDE; | 115 virtual net::URLRequestContextGetter* GetRequestContextForMedia() OVERRIDE; |
| 116 virtual content::ResourceContext* GetResourceContext() OVERRIDE; | 116 virtual content::ResourceContext* GetResourceContext() OVERRIDE; |
| 117 virtual content::GeolocationPermissionContext* | 117 virtual content::GeolocationPermissionContext* |
| 118 GetGeolocationPermissionContext() OVERRIDE; | 118 GetGeolocationPermissionContext() OVERRIDE; |
| 119 virtual content::SpeechInputPreferences* GetSpeechInputPreferences() OVERRIDE; | 119 virtual content::SpeechInputPreferences* GetSpeechInputPreferences() OVERRIDE; |
| 120 virtual bool DidLastSessionExitCleanly() OVERRIDE; | 120 virtual bool DidLastSessionExitCleanly() OVERRIDE; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 FilePath last_selected_directory_; | 153 FilePath last_selected_directory_; |
| 154 | 154 |
| 155 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 155 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 156 | 156 |
| 157 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 157 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
| 158 | 158 |
| 159 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 159 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 160 }; | 160 }; |
| 161 | 161 |
| 162 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 162 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |