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

Unified Diff: third_party/WebKit/Source/modules/storage/DOMWindowStorage.h

Issue 2617703003: Remove ContextClient from DOMWindowStorage (Closed)
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
Index: third_party/WebKit/Source/modules/storage/DOMWindowStorage.h
diff --git a/third_party/WebKit/Source/modules/storage/DOMWindowStorage.h b/third_party/WebKit/Source/modules/storage/DOMWindowStorage.h
index bf7a0df31829a812774012f0435a6958b00340d4..330e6e62a841bfb1677c3343fc76ff2d24eba224 100644
--- a/third_party/WebKit/Source/modules/storage/DOMWindowStorage.h
+++ b/third_party/WebKit/Source/modules/storage/DOMWindowStorage.h
@@ -5,7 +5,6 @@
#ifndef DOMWindowStorage_h
#define DOMWindowStorage_h
-#include "core/dom/ContextLifecycleObserver.h"
#include "core/frame/LocalDOMWindow.h"
#include "platform/Supplementable.h"
#include "platform/heap/Handle.h"
@@ -18,8 +17,7 @@ class LocalDOMWindow;
class Storage;
class DOMWindowStorage final : public GarbageCollected<DOMWindowStorage>,
- public Supplement<LocalDOMWindow>,
- public ContextClient {
+ public Supplement<LocalDOMWindow> {
USING_GARBAGE_COLLECTED_MIXIN(DOMWindowStorage);
public:
@@ -38,7 +36,6 @@ class DOMWindowStorage final : public GarbageCollected<DOMWindowStorage>,
explicit DOMWindowStorage(LocalDOMWindow&);
static const char* supplementName();
- Member<LocalDOMWindow> m_window;
mutable Member<Storage> m_sessionStorage;
mutable Member<Storage> m_localStorage;
};

Powered by Google App Engine
This is Rietveld 408576698