| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 virtual FilePath GetPath() OVERRIDE; | 109 virtual FilePath GetPath() OVERRIDE; |
| 110 virtual bool IsOffTheRecord() const 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::SpeechRecognitionPreferences* |
| 120 GetSpeechRecognitionPreferences() OVERRIDE; |
| 120 virtual bool DidLastSessionExitCleanly() OVERRIDE; | 121 virtual bool DidLastSessionExitCleanly() OVERRIDE; |
| 121 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; | 122 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; |
| 122 | 123 |
| 123 // content::NotificationObserver implementation. | 124 // content::NotificationObserver implementation. |
| 124 virtual void Observe(int type, | 125 virtual void Observe(int type, |
| 125 const content::NotificationSource& source, | 126 const content::NotificationSource& source, |
| 126 const content::NotificationDetails& details) OVERRIDE; | 127 const content::NotificationDetails& details) OVERRIDE; |
| 127 | 128 |
| 128 private: | 129 private: |
| 129 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); | 130 FRIEND_TEST_ALL_PREFIXES(OffTheRecordProfileImplTest, GetHostZoomMap); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 153 FilePath last_selected_directory_; | 154 FilePath last_selected_directory_; |
| 154 | 155 |
| 155 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 156 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 156 | 157 |
| 157 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 158 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
| 158 | 159 |
| 159 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 160 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 160 }; | 161 }; |
| 161 | 162 |
| 162 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 163 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |