diff options
author | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-21 16:12:49 +0000 |
---|---|---|
committer | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-21 16:12:49 +0000 |
commit | 336e4489eacbb470ff5d22deb464beb9cb832422 (patch) | |
tree | 9ba56a0467d9ee7769c4d8955e78854cd0cc4c8e /content/browser/storage_partition_impl.h | |
parent | 910b310d6bd6304a24ae2bfeb7af766aea2502da (diff) | |
download | chromium_src-336e4489eacbb470ff5d22deb464beb9cb832422.zip chromium_src-336e4489eacbb470ff5d22deb464beb9cb832422.tar.gz chromium_src-336e4489eacbb470ff5d22deb464beb9cb832422.tar.bz2 |
Stub out initial NavigationController browser implementation
This is the initial cut for the browser-side NavigationControllerDispatcherHost,
and all the various related support plumbing to hook up two initial messages.
BUG= 285976
Review URL: https://chromiumcodereview.appspot.com/23615009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224585 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/storage_partition_impl.h')
-rw-r--r-- | content/browser/storage_partition_impl.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/content/browser/storage_partition_impl.h b/content/browser/storage_partition_impl.h index e59347c..87130e1 100644 --- a/content/browser/storage_partition_impl.h +++ b/content/browser/storage_partition_impl.h @@ -12,6 +12,7 @@ #include "content/browser/dom_storage/dom_storage_context_wrapper.h" #include "content/browser/indexed_db/indexed_db_context_impl.h" #include "content/browser/media/webrtc_identity_store.h" +#include "content/browser/service_worker/service_worker_context.h" #include "content/common/content_export.h" #include "content/public/browser/storage_partition.h" @@ -46,6 +47,8 @@ class StoragePartitionImpl : public StoragePartition { const base::Time& end, const base::Closure& callback) OVERRIDE; + ServiceWorkerContext* GetServiceWorkerContext(); + WebRTCIdentityStore* GetWebRTCIdentityStore(); struct DataDeletionHelper; @@ -77,6 +80,7 @@ class StoragePartitionImpl : public StoragePartition { webkit_database::DatabaseTracker* database_tracker, DOMStorageContextWrapper* dom_storage_context, IndexedDBContextImpl* indexed_db_context, + ServiceWorkerContext* service_worker_context, WebRTCIdentityStore* webrtc_identity_store); void ClearDataImpl(uint32 remove_mask, @@ -112,6 +116,7 @@ class StoragePartitionImpl : public StoragePartition { scoped_refptr<webkit_database::DatabaseTracker> database_tracker_; scoped_refptr<DOMStorageContextWrapper> dom_storage_context_; scoped_refptr<IndexedDBContextImpl> indexed_db_context_; + scoped_refptr<ServiceWorkerContext> service_worker_context_; scoped_refptr<WebRTCIdentityStore> webrtc_identity_store_; DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); |