| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 virtual net::URLRequestContextGetter* | 77 virtual net::URLRequestContextGetter* |
| 78 GetRequestContextForExtensions() OVERRIDE; | 78 GetRequestContextForExtensions() OVERRIDE; |
| 79 virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp( | 79 virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp( |
| 80 const std::string& app_id) OVERRIDE; | 80 const std::string& app_id) OVERRIDE; |
| 81 virtual const content::ResourceContext& GetResourceContext() OVERRIDE; | 81 virtual const content::ResourceContext& GetResourceContext() OVERRIDE; |
| 82 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; | 82 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; |
| 83 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; | 83 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; |
| 84 virtual HostZoomMap* GetHostZoomMap() OVERRIDE; | 84 virtual HostZoomMap* GetHostZoomMap() OVERRIDE; |
| 85 virtual GeolocationPermissionContext* | 85 virtual GeolocationPermissionContext* |
| 86 GetGeolocationPermissionContext() OVERRIDE; | 86 GetGeolocationPermissionContext() OVERRIDE; |
| 87 virtual bool GetSpeechCensorPref() OVERRIDE; |
| 87 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher() OVERRIDE; | 88 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher() OVERRIDE; |
| 88 virtual FindBarState* GetFindBarState() OVERRIDE; | 89 virtual FindBarState* GetFindBarState() OVERRIDE; |
| 89 virtual bool HasProfileSyncService() const OVERRIDE; | 90 virtual bool HasProfileSyncService() const OVERRIDE; |
| 90 virtual bool DidLastSessionExitCleanly() OVERRIDE; | 91 virtual bool DidLastSessionExitCleanly() OVERRIDE; |
| 91 virtual BookmarkModel* GetBookmarkModel() OVERRIDE; | 92 virtual BookmarkModel* GetBookmarkModel() OVERRIDE; |
| 92 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; | 93 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; |
| 93 virtual TokenService* GetTokenService() OVERRIDE; | 94 virtual TokenService* GetTokenService() OVERRIDE; |
| 94 virtual ProfileSyncService* GetProfileSyncService() OVERRIDE; | 95 virtual ProfileSyncService* GetProfileSyncService() OVERRIDE; |
| 95 virtual ProfileSyncService* GetProfileSyncService( | 96 virtual ProfileSyncService* GetProfileSyncService( |
| 96 const std::string& cros_user) OVERRIDE; | 97 const std::string& cros_user) OVERRIDE; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 199 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 199 | 200 |
| 200 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 201 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
| 201 | 202 |
| 202 scoped_refptr<quota::QuotaManager> quota_manager_; | 203 scoped_refptr<quota::QuotaManager> quota_manager_; |
| 203 | 204 |
| 204 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 205 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 205 }; | 206 }; |
| 206 | 207 |
| 207 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 208 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |