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 // This class gathers state related to a single user profile. | 5 // This class gathers state related to a single user profile. |
6 | 6 |
7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 static void RegisterUserPrefs(PrefService* prefs); | 47 static void RegisterUserPrefs(PrefService* prefs); |
48 | 48 |
49 // content::BrowserContext implementation: | 49 // content::BrowserContext implementation: |
50 virtual FilePath GetPath() OVERRIDE; | 50 virtual FilePath GetPath() OVERRIDE; |
51 virtual SSLHostState* GetSSLHostState() OVERRIDE; | 51 virtual SSLHostState* GetSSLHostState() OVERRIDE; |
52 virtual content::DownloadManager* GetDownloadManager() OVERRIDE; | 52 virtual content::DownloadManager* GetDownloadManager() OVERRIDE; |
53 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; | 53 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; |
54 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( | 54 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( |
55 int renderer_child_id) OVERRIDE; | 55 int renderer_child_id) OVERRIDE; |
56 virtual net::URLRequestContextGetter* GetRequestContextForMedia() OVERRIDE; | 56 virtual net::URLRequestContextGetter* GetRequestContextForMedia() OVERRIDE; |
57 virtual const content::ResourceContext& GetResourceContext() OVERRIDE; | 57 virtual content::ResourceContext* GetResourceContext() OVERRIDE; |
58 virtual content::HostZoomMap* GetHostZoomMap() OVERRIDE; | 58 virtual content::HostZoomMap* GetHostZoomMap() OVERRIDE; |
59 virtual content::GeolocationPermissionContext* | 59 virtual content::GeolocationPermissionContext* |
60 GetGeolocationPermissionContext() OVERRIDE; | 60 GetGeolocationPermissionContext() OVERRIDE; |
61 virtual SpeechInputPreferences* GetSpeechInputPreferences() OVERRIDE; | 61 virtual SpeechInputPreferences* GetSpeechInputPreferences() OVERRIDE; |
62 virtual quota::QuotaManager* GetQuotaManager() OVERRIDE; | 62 virtual quota::QuotaManager* GetQuotaManager() OVERRIDE; |
63 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() OVERRIDE; | 63 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() OVERRIDE; |
64 virtual WebKitContext* GetWebKitContext() OVERRIDE; | 64 virtual WebKitContext* GetWebKitContext() OVERRIDE; |
65 virtual ChromeAppCacheService* GetAppCacheService() OVERRIDE; | 65 virtual ChromeAppCacheService* GetAppCacheService() OVERRIDE; |
66 virtual ChromeBlobStorageContext* GetBlobStorageContext() OVERRIDE; | 66 virtual ChromeBlobStorageContext* GetBlobStorageContext() OVERRIDE; |
67 virtual fileapi::FileSystemContext* GetFileSystemContext() OVERRIDE; | 67 virtual fileapi::FileSystemContext* GetFileSystemContext() OVERRIDE; |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 Profile::Delegate* delegate_; | 315 Profile::Delegate* delegate_; |
316 | 316 |
317 chrome_browser_net::Predictor* predictor_; | 317 chrome_browser_net::Predictor* predictor_; |
318 | 318 |
319 bool session_restore_enabled_; | 319 bool session_restore_enabled_; |
320 | 320 |
321 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 321 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
322 }; | 322 }; |
323 | 323 |
324 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 324 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
OLD | NEW |