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

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

Issue 7989001: Remove use of default request context and fix use of speech censor flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Separate overriden methods in profile_impl.h Created 9 years, 2 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
OLDNEW
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 // 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_H_ 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_H_
8 #define CHROME_BROWSER_PROFILES_PROFILE_H_ 8 #define CHROME_BROWSER_PROFILES_PROFILE_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 class PasswordStore; 77 class PasswordStore;
78 class PrefProxyConfigTracker; 78 class PrefProxyConfigTracker;
79 class PrefService; 79 class PrefService;
80 class ProfileSyncFactory; 80 class ProfileSyncFactory;
81 class ProfileSyncService; 81 class ProfileSyncService;
82 class PromoCounter; 82 class PromoCounter;
83 class PromoResourceService; 83 class PromoResourceService;
84 class ProtocolHandlerRegistry; 84 class ProtocolHandlerRegistry;
85 class SQLitePersistentCookieStore; 85 class SQLitePersistentCookieStore;
86 class SSLConfigServiceManager; 86 class SSLConfigServiceManager;
87 class SpeechInputPreferences;
87 class SpellCheckHost; 88 class SpellCheckHost;
88 class TemplateURLFetcher; 89 class TemplateURLFetcher;
89 class TokenService; 90 class TokenService;
90 class UserScriptMaster; 91 class UserScriptMaster;
91 class UserStyleSheetWatcher; 92 class UserStyleSheetWatcher;
92 class VisitedLinkEventListener; 93 class VisitedLinkEventListener;
93 class VisitedLinkMaster; 94 class VisitedLinkMaster;
94 class WebDataService; 95 class WebDataService;
95 class WebUI; 96 class WebUI;
96 97
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 virtual SSLHostState* GetSSLHostState() = 0; 197 virtual SSLHostState* GetSSLHostState() = 0;
197 virtual DownloadManager* GetDownloadManager() = 0; 198 virtual DownloadManager* GetDownloadManager() = 0;
198 virtual bool HasCreatedDownloadManager() const = 0; 199 virtual bool HasCreatedDownloadManager() const = 0;
199 virtual net::URLRequestContextGetter* GetRequestContext() = 0; 200 virtual net::URLRequestContextGetter* GetRequestContext() = 0;
200 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( 201 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess(
201 int renderer_child_id) = 0; 202 int renderer_child_id) = 0;
202 virtual net::URLRequestContextGetter* GetRequestContextForMedia() = 0; 203 virtual net::URLRequestContextGetter* GetRequestContextForMedia() = 0;
203 virtual const content::ResourceContext& GetResourceContext() = 0; 204 virtual const content::ResourceContext& GetResourceContext() = 0;
204 virtual HostZoomMap* GetHostZoomMap() = 0; 205 virtual HostZoomMap* GetHostZoomMap() = 0;
205 virtual GeolocationPermissionContext* GetGeolocationPermissionContext() = 0; 206 virtual GeolocationPermissionContext* GetGeolocationPermissionContext() = 0;
207 virtual SpeechInputPreferences* GetSpeechInputPreferences() = 0;
206 virtual quota::QuotaManager* GetQuotaManager() = 0; 208 virtual quota::QuotaManager* GetQuotaManager() = 0;
207 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() = 0; 209 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() = 0;
208 virtual WebKitContext* GetWebKitContext() = 0; 210 virtual WebKitContext* GetWebKitContext() = 0;
209 virtual ChromeAppCacheService* GetAppCacheService() = 0; 211 virtual ChromeAppCacheService* GetAppCacheService() = 0;
210 virtual ChromeBlobStorageContext* GetBlobStorageContext() = 0; 212 virtual ChromeBlobStorageContext* GetBlobStorageContext() = 0;
211 virtual fileapi::FileSystemContext* GetFileSystemContext() = 0; 213 virtual fileapi::FileSystemContext* GetFileSystemContext() = 0;
212 214
213 // content::BrowserContext implementation ------------------------------------ 215 // content::BrowserContext implementation ------------------------------------
214 216
215 // Returns the name associated with this profile. This name is displayed in 217 // Returns the name associated with this profile. This name is displayed in
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 struct hash<Profile*> { 581 struct hash<Profile*> {
580 std::size_t operator()(Profile* const& p) const { 582 std::size_t operator()(Profile* const& p) const {
581 return reinterpret_cast<std::size_t>(p); 583 return reinterpret_cast<std::size_t>(p);
582 } 584 }
583 }; 585 };
584 586
585 } // namespace __gnu_cxx 587 } // namespace __gnu_cxx
586 #endif 588 #endif
587 589
588 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ 590 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/off_the_record_profile_impl.cc ('k') | chrome/browser/profiles/profile_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698