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

Unified Diff: chrome/browser/net/chrome_url_request_context.h

Issue 6825038: Create a content::ResourceContext. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix test. Created 9 years, 8 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 | « no previous file | chrome/browser/net/chrome_url_request_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « no previous file | chrome/browser/net/chrome_url_request_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698