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