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

Unified Diff: third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.h

Issue 2617583005: Remove ContextClient from NavigatorStorageQuota
Patch Set: temp Created 3 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 | « no previous file | third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.h
diff --git a/third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.h b/third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.h
index 0e6fa262c8cef6b1c02b4836edf5d8027c46be50..d19b0e1303cd0090e1ebdec8875da835cc39611b 100644
--- a/third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.h
+++ b/third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.h
@@ -31,7 +31,6 @@
#ifndef NavigatorStorageQuota_h
#define NavigatorStorageQuota_h
-#include "core/dom/ContextLifecycleObserver.h"
#include "core/frame/Navigator.h"
#include "modules/quota/DeprecatedStorageQuota.h"
#include "platform/Supplementable.h"
@@ -39,15 +38,13 @@
namespace blink {
-class LocalFrame;
class Navigator;
class StorageManager;
class StorageQuota;
class NavigatorStorageQuota final
: public GarbageCollected<NavigatorStorageQuota>,
- public Supplement<Navigator>,
- public ContextClient {
+ public Supplement<Navigator> {
USING_GARBAGE_COLLECTED_MIXIN(NavigatorStorageQuota);
public:
@@ -65,7 +62,7 @@ class NavigatorStorageQuota final
DECLARE_TRACE();
private:
- explicit NavigatorStorageQuota(LocalFrame*);
+ explicit NavigatorStorageQuota(Navigator&);
static const char* supplementName();
mutable Member<StorageQuota> m_storageQuota;
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698