| Index: chrome/browser/net/chrome_url_request_context.h
|
| diff --git a/chrome/browser/net/chrome_url_request_context.h b/chrome/browser/net/chrome_url_request_context.h
|
| index a511cede519f476d2b36bf898cf54fe34b3140b4..95bc71b1c32c9a767734754cb947444bc9cec8a8 100644
|
| --- a/chrome/browser/net/chrome_url_request_context.h
|
| +++ b/chrome/browser/net/chrome_url_request_context.h
|
| @@ -23,7 +23,6 @@
|
| #include "net/base/cookie_policy.h"
|
| #include "net/url_request/url_request_context.h"
|
| #include "net/url_request/url_request_context_getter.h"
|
| -#include "webkit/database/database_tracker.h"
|
| #include "webkit/fileapi/file_system_context.h"
|
|
|
| class ChromeURLDataManagerBackend;
|
| @@ -60,11 +59,6 @@ class ChromeURLRequestContext : public net::URLRequestContext {
|
| return appcache_service_.get();
|
| }
|
|
|
| - // Gets the database tracker associated with this context's profile.
|
| - webkit_database::DatabaseTracker* database_tracker() const {
|
| - return database_tracker_.get();
|
| - }
|
| -
|
| // Gets the blob storage context associated with this context's profile.
|
| ChromeBlobStorageContext* blob_storage_context() const {
|
| return blob_storage_context_.get();
|
| @@ -114,9 +108,6 @@ class ChromeURLRequestContext : public net::URLRequestContext {
|
| void set_appcache_service(ChromeAppCacheService* service) {
|
| appcache_service_ = service;
|
| }
|
| - void set_database_tracker(webkit_database::DatabaseTracker* tracker) {
|
| - database_tracker_ = tracker;
|
| - }
|
| void set_blob_storage_context(ChromeBlobStorageContext* context) {
|
| blob_storage_context_ = context;
|
| }
|
| @@ -150,7 +141,6 @@ class ChromeURLRequestContext : public net::URLRequestContext {
|
|
|
| // TODO(willchan): Make these non-refcounted.
|
| scoped_refptr<ChromeAppCacheService> appcache_service_;
|
| - scoped_refptr<webkit_database::DatabaseTracker> database_tracker_;
|
| scoped_refptr<HostContentSettingsMap> host_content_settings_map_;
|
| scoped_refptr<HostZoomMap> host_zoom_map_;
|
| scoped_refptr<ChromeBlobStorageContext> blob_storage_context_;
|
|
|