Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Side by Side Diff: chrome/browser/profiles/profile_impl.h

Issue 9369009: Make content::ResourceContext be a real interface like the rest of the Content API (i.e. don't ha... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/profiles/profile.h ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile.h ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698