| 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
|
|
|