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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 virtual fileapi::FileSystemContext* GetFileSystemContext() OVERRIDE; | 69 virtual fileapi::FileSystemContext* GetFileSystemContext() OVERRIDE; |
70 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; | 70 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; |
71 virtual quota::QuotaManager* GetQuotaManager() OVERRIDE; | 71 virtual quota::QuotaManager* GetQuotaManager() OVERRIDE; |
72 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( | 72 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( |
73 int renderer_child_id) OVERRIDE; | 73 int renderer_child_id) OVERRIDE; |
74 virtual net::URLRequestContextGetter* GetRequestContextForMedia() OVERRIDE; | 74 virtual net::URLRequestContextGetter* GetRequestContextForMedia() OVERRIDE; |
75 virtual net::URLRequestContextGetter* | 75 virtual net::URLRequestContextGetter* |
76 GetRequestContextForExtensions() OVERRIDE; | 76 GetRequestContextForExtensions() OVERRIDE; |
77 virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp( | 77 virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp( |
78 const std::string& app_id) OVERRIDE; | 78 const std::string& app_id) OVERRIDE; |
79 virtual const content::ResourceContext& GetResourceContext() OVERRIDE; | 79 virtual content::ResourceContext* GetResourceContext() OVERRIDE; |
80 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; | 80 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; |
81 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; | 81 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; |
82 virtual content::HostZoomMap* GetHostZoomMap() OVERRIDE; | 82 virtual content::HostZoomMap* GetHostZoomMap() OVERRIDE; |
83 virtual content::GeolocationPermissionContext* | 83 virtual content::GeolocationPermissionContext* |
84 GetGeolocationPermissionContext() OVERRIDE; | 84 GetGeolocationPermissionContext() OVERRIDE; |
85 virtual SpeechInputPreferences* GetSpeechInputPreferences() OVERRIDE; | 85 virtual SpeechInputPreferences* GetSpeechInputPreferences() OVERRIDE; |
86 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher() OVERRIDE; | 86 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher() OVERRIDE; |
87 virtual bool DidLastSessionExitCleanly() OVERRIDE; | 87 virtual bool DidLastSessionExitCleanly() OVERRIDE; |
88 virtual BookmarkModel* GetBookmarkModel() OVERRIDE; | 88 virtual BookmarkModel* GetBookmarkModel() OVERRIDE; |
89 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; | 89 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 180 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
181 | 181 |
182 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 182 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
183 | 183 |
184 scoped_refptr<quota::QuotaManager> quota_manager_; | 184 scoped_refptr<quota::QuotaManager> quota_manager_; |
185 | 185 |
186 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 186 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
187 }; | 187 }; |
188 | 188 |
189 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 189 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
OLD | NEW |