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

Unified Diff: chrome/browser/profiles/profile_io_data.h

Issue 9425026: Remove getters for HTML5 related objects from the ResourceContext interface. Half of them weren't u… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/profiles/profile_impl_io_data.cc ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_io_data.h
===================================================================
--- chrome/browser/profiles/profile_io_data.h (revision 122771)
+++ chrome/browser/profiles/profile_io_data.h (working copy)
@@ -21,8 +21,6 @@
#include "net/base/cookie_monster.h"
class AudioManager;
-class ChromeAppCacheService;
-class ChromeBlobStorageContext;
class CookieSettings;
class DesktopNotificationService;
class ExtensionInfoMap;
@@ -33,10 +31,6 @@
class TransportSecurityPersister;
class WebKitContext;
-namespace fileapi {
-class FileSystemContext;
-} // namespace fileapi
-
namespace media_stream {
class MediaStreamManager;
} // namespace media_stream
@@ -56,14 +50,6 @@
class URLBlacklistManager;
} // namespace policy
-namespace quota {
-class QuotaManager;
-}; // namespace quota
-
-namespace webkit_database {
-class DatabaseTracker;
-} // webkit_database
-
// Conceptually speaking, the ProfileIOData represents data that lives on the IO
// thread that is owned by a Profile, such as, but not limited to, network
// objects like CookieMonster, HttpTransactionFactory, etc. Profile owns
@@ -158,12 +144,7 @@
scoped_refptr<content::HostZoomMap> host_zoom_map;
scoped_refptr<net::SSLConfigService> ssl_config_service;
scoped_refptr<net::CookieMonster::Delegate> cookie_monster_delegate;
- scoped_refptr<webkit_database::DatabaseTracker> database_tracker;
- scoped_refptr<ChromeAppCacheService> appcache_service;
- scoped_refptr<ChromeBlobStorageContext> blob_storage_context;
- scoped_refptr<fileapi::FileSystemContext> file_system_context;
scoped_refptr<WebKitContext> webkit_context;
- scoped_refptr<quota::QuotaManager> quota_manager;
scoped_refptr<ExtensionInfoMap> extension_info_map;
DesktopNotificationService* notification_service;
scoped_refptr<ProtocolHandlerRegistry> protocol_handler_registry;
@@ -238,12 +219,6 @@
// ResourceContext implementation:
virtual net::HostResolver* GetHostResolver() OVERRIDE;
virtual net::URLRequestContext* GetRequestContext() OVERRIDE;
- virtual ChromeAppCacheService* GetAppCacheService() OVERRIDE;
- virtual webkit_database::DatabaseTracker* GetDatabaseTracker() OVERRIDE;
- virtual fileapi::FileSystemContext* GetFileSystemContext() OVERRIDE;
- virtual WebKitContext* GetWebKitContext() OVERRIDE;
- virtual ChromeBlobStorageContext* GetBlobStorageContext() OVERRIDE;
- virtual quota::QuotaManager* GetQuotaManager() OVERRIDE;
virtual content::HostZoomMap* GetHostZoomMap() OVERRIDE;
virtual MediaObserver* GetMediaObserver() OVERRIDE;
virtual media_stream::MediaStreamManager* GetMediaStreamManager() OVERRIDE;
@@ -255,12 +230,6 @@
net::HostResolver* host_resolver_;
net::URLRequestContext* request_context_;
- ChromeAppCacheService* appcache_service_;
- webkit_database::DatabaseTracker* database_tracker_;
- fileapi::FileSystemContext* file_system_context_;
- WebKitContext* webkit_context_;
- ChromeBlobStorageContext* blob_storage_context_;
- quota::QuotaManager* quota_manager_;
content::HostZoomMap* host_zoom_map_;
MediaObserver* media_observer_;
media_stream::MediaStreamManager* media_stream_manager_;
@@ -321,12 +290,6 @@
mutable scoped_ptr<net::URLRequestJobFactory> job_factory_;
// Pointed to by ResourceContext.
- mutable scoped_refptr<webkit_database::DatabaseTracker> database_tracker_;
- mutable scoped_refptr<ChromeAppCacheService> appcache_service_;
- mutable scoped_refptr<ChromeBlobStorageContext> blob_storage_context_;
- mutable scoped_refptr<fileapi::FileSystemContext> file_system_context_;
- mutable scoped_refptr<WebKitContext> webkit_context_;
- mutable scoped_refptr<quota::QuotaManager> quota_manager_;
mutable scoped_refptr<content::HostZoomMap> host_zoom_map_;
mutable scoped_ptr<media_stream::MediaStreamManager> media_stream_manager_;
« no previous file with comments | « chrome/browser/profiles/profile_impl_io_data.cc ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698