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

Unified Diff: third_party/WebKit/Source/core/frame/DOMWindowProperty.h

Issue 2388693002: Make DOMWindowProperty a thin wrapper of ContextLifecycleObserver
Patch Set: temp Created 4 years 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/core/frame/DOMWindowProperty.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/DOMWindowProperty.h
diff --git a/third_party/WebKit/Source/core/frame/DOMWindowProperty.h b/third_party/WebKit/Source/core/frame/DOMWindowProperty.h
index 06257b303bf8770ac3782f34286aefc9ef15ffda..5bdb1207f7927e67cabb85d116896063b0b0400b 100644
--- a/third_party/WebKit/Source/core/frame/DOMWindowProperty.h
+++ b/third_party/WebKit/Source/core/frame/DOMWindowProperty.h
@@ -27,24 +27,18 @@
#define DOMWindowProperty_h
#include "core/CoreExport.h"
+#include "core/dom/ContextLifecycleObserver.h"
#include "platform/heap/Handle.h"
namespace blink {
class LocalFrame;
-class CORE_EXPORT DOMWindowProperty : public GarbageCollectedMixin {
+// TODO(haraken): Deprecate DOMWindowProperty.
+class CORE_EXPORT DOMWindowProperty : public ContextLifecycleObserver {
public:
explicit DOMWindowProperty(LocalFrame*);
-
- virtual void frameDestroyed();
-
- LocalFrame* frame() const { return m_frame; }
-
- DECLARE_VIRTUAL_TRACE();
-
- private:
- Member<LocalFrame> m_frame;
+ LocalFrame* frame() const;
};
} // namespace blink
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/DOMWindowProperty.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698