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

Unified Diff: content/browser/storage_partition_impl.h

Issue 861373002: Refactor navigator.connect code to make it more flexible. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typo Created 5 years, 11 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/browser/service_worker/service_worker_version.cc ('k') | content/browser/storage_partition_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/storage_partition_impl.h
diff --git a/content/browser/storage_partition_impl.h b/content/browser/storage_partition_impl.h
index d9e8ae5bd6720464eb3d54ac67c91f0cce5cca1c..8f002766406c1be427f146eb232b2bf408a565c2 100644
--- a/content/browser/storage_partition_impl.h
+++ b/content/browser/storage_partition_impl.h
@@ -13,6 +13,7 @@
#include "content/browser/host_zoom_level_context.h"
#include "content/browser/indexed_db/indexed_db_context_impl.h"
#include "content/browser/media/webrtc_identity_store.h"
+#include "content/browser/navigator_connect/navigator_connect_context_impl.h"
#include "content/browser/service_worker/service_worker_context_wrapper.h"
#include "content/common/content_export.h"
#include "content/public/browser/storage_partition.h"
@@ -48,7 +49,7 @@ class StoragePartitionImpl : public StoragePartition {
HostZoomMap* GetHostZoomMap() override;
HostZoomLevelContext* GetHostZoomLevelContext() override;
ZoomLevelDelegate* GetZoomLevelDelegate() override;
- NavigatorConnectContext* GetNavigatorConnectContext() override;
+ NavigatorConnectContextImpl* GetNavigatorConnectContext() override;
void ClearDataForOrigin(uint32 remove_mask,
uint32 quota_storage_remove_mask,
@@ -129,7 +130,7 @@ class StoragePartitionImpl : public StoragePartition {
storage::SpecialStoragePolicy* special_storage_policy,
GeofencingManager* geofencing_manager,
HostZoomLevelContext* host_zoom_level_context,
- NavigatorConnectContext* navigator_connect_context);
+ NavigatorConnectContextImpl* navigator_connect_context);
void ClearDataImpl(uint32 remove_mask,
uint32 quota_storage_remove_mask,
@@ -171,7 +172,7 @@ class StoragePartitionImpl : public StoragePartition {
scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy_;
scoped_refptr<GeofencingManager> geofencing_manager_;
scoped_refptr<HostZoomLevelContext> host_zoom_level_context_;
- scoped_refptr<NavigatorConnectContext> navigator_connect_context_;
+ scoped_refptr<NavigatorConnectContextImpl> navigator_connect_context_;
// Raw pointer that should always be valid. The BrowserContext owns the
// StoragePartitionImplMap which then owns StoragePartitionImpl. When the
« no previous file with comments | « content/browser/service_worker/service_worker_version.cc ('k') | content/browser/storage_partition_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698