Index: content/browser/storage_partition_impl.h |
diff --git a/content/browser/storage_partition_impl.h b/content/browser/storage_partition_impl.h |
index 9ab7fc3bffc6099d8519042f72e2a2f7e09d2c8c..b0d95363bef8f3dc9847beec6f9ed0c0cf3d6c58 100644 |
--- a/content/browser/storage_partition_impl.h |
+++ b/content/browser/storage_partition_impl.h |
@@ -31,6 +31,7 @@ class StoragePartitionImpl : public StoragePartition { |
virtual webkit_database::DatabaseTracker* GetDatabaseTracker() OVERRIDE; |
virtual DOMStorageContextImpl* GetDOMStorageContext() OVERRIDE; |
virtual IndexedDBContextImpl* GetIndexedDBContext() OVERRIDE; |
+ virtual ResourceContext* GetResourceContext() OVERRIDE; |
private: |
StoragePartitionImpl(const FilePath& partition_path, |
@@ -39,7 +40,8 @@ class StoragePartitionImpl : public StoragePartition { |
fileapi::FileSystemContext* filesystem_context, |
webkit_database::DatabaseTracker* database_tracker, |
DOMStorageContextImpl* dom_storage_context, |
- IndexedDBContextImpl* indexed_db_context); |
+ IndexedDBContextImpl* indexed_db_context, |
+ ResourceContext* resource_context); |
FilePath partition_path_; |
scoped_refptr<quota::QuotaManager> quota_manager_; |
@@ -48,6 +50,7 @@ class StoragePartitionImpl : public StoragePartition { |
scoped_refptr<webkit_database::DatabaseTracker> database_tracker_; |
scoped_refptr<DOMStorageContextImpl> dom_storage_context_; |
scoped_refptr<IndexedDBContextImpl> indexed_db_context_; |
+ ResourceContext* resource_context_; |
DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); |
}; |