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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 virtual GURL GetHomePage() OVERRIDE; | 84 virtual GURL GetHomePage() OVERRIDE; |
85 | 85 |
86 // content::BrowserContext implementation: | 86 // content::BrowserContext implementation: |
87 virtual FilePath GetPath() OVERRIDE; | 87 virtual FilePath GetPath() OVERRIDE; |
88 virtual bool IsOffTheRecord() const OVERRIDE; | 88 virtual bool IsOffTheRecord() const OVERRIDE; |
89 virtual content::DownloadManagerDelegate* | 89 virtual content::DownloadManagerDelegate* |
90 GetDownloadManagerDelegate() OVERRIDE; | 90 GetDownloadManagerDelegate() OVERRIDE; |
91 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; | 91 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; |
92 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( | 92 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( |
93 int renderer_child_id) OVERRIDE; | 93 int renderer_child_id) OVERRIDE; |
94 virtual net::URLRequestContextGetter* GetRequestContextForMedia() OVERRIDE; | 94 virtual net::URLRequestContextGetter* |
| 95 GetDefaultRequestContextForMedia() OVERRIDE; |
| 96 virtual net::URLRequestContextGetter* GetRequestContextForMedia( |
| 97 int renderer_child_id) OVERRIDE; |
95 virtual content::ResourceContext* GetResourceContext() OVERRIDE; | 98 virtual content::ResourceContext* GetResourceContext() OVERRIDE; |
96 virtual content::GeolocationPermissionContext* | 99 virtual content::GeolocationPermissionContext* |
97 GetGeolocationPermissionContext() OVERRIDE; | 100 GetGeolocationPermissionContext() OVERRIDE; |
98 virtual content::SpeechRecognitionPreferences* | 101 virtual content::SpeechRecognitionPreferences* |
99 GetSpeechRecognitionPreferences() OVERRIDE; | 102 GetSpeechRecognitionPreferences() OVERRIDE; |
100 virtual bool DidLastSessionExitCleanly() OVERRIDE; | 103 virtual bool DidLastSessionExitCleanly() OVERRIDE; |
101 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; | 104 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; |
102 | 105 |
103 // content::NotificationObserver implementation. | 106 // content::NotificationObserver implementation. |
104 virtual void Observe(int type, | 107 virtual void Observe(int type, |
(...skipping 24 matching lines...) Expand all Loading... |
129 Time start_time_; | 132 Time start_time_; |
130 | 133 |
131 FilePath last_selected_directory_; | 134 FilePath last_selected_directory_; |
132 | 135 |
133 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 136 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
134 | 137 |
135 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 138 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
136 }; | 139 }; |
137 | 140 |
138 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 141 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
OLD | NEW |