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

Unified Diff: content/shell/shell_resource_context.cc

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 | « content/shell/shell_resource_context.h ('k') | content/test/test_browser_context.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/shell_resource_context.cc
===================================================================
--- content/shell/shell_resource_context.cc (revision 122771)
+++ content/shell/shell_resource_context.cc (working copy)
@@ -3,17 +3,13 @@
// found in the LICENSE file.
#include "content/shell/shell_resource_context.h"
-
-#include "content/browser/chrome_blob_storage_context.h"
#include "content/shell/shell_url_request_context_getter.h"
namespace content {
ShellResourceContext::ShellResourceContext(
- ShellURLRequestContextGetter* getter,
- ChromeBlobStorageContext* blob_storage_context)
- : getter_(getter),
- blob_storage_context_(blob_storage_context) {
+ ShellURLRequestContextGetter* getter)
+ : getter_(getter) {
}
ShellResourceContext::~ShellResourceContext() {
@@ -27,26 +23,6 @@
return getter_->GetURLRequestContext();
}
-ChromeAppCacheService* ShellResourceContext::GetAppCacheService() {
- return NULL;
-}
-
-webkit_database::DatabaseTracker* ShellResourceContext::GetDatabaseTracker() {
- return NULL;
-}
-
-fileapi::FileSystemContext* ShellResourceContext::GetFileSystemContext() {
- return NULL;
-}
-
-ChromeBlobStorageContext* ShellResourceContext::GetBlobStorageContext() {
- return blob_storage_context_;
-}
-
-quota::QuotaManager* ShellResourceContext::GetQuotaManager() {
- return NULL;
-}
-
HostZoomMap* ShellResourceContext::GetHostZoomMap() {
return NULL;
}
@@ -64,8 +40,4 @@
return NULL;
}
-WebKitContext* ShellResourceContext::GetWebKitContext() {
- return NULL;
-}
-
} // namespace content
« no previous file with comments | « content/shell/shell_resource_context.h ('k') | content/test/test_browser_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698