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