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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/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 327c4694a99da036eb77694f983078e8efb8deb8..8da626042075ebdf23e8e180b403be78c763be5a 100644
--- a/third_party/WebKit/Source/core/frame/DOMWindowProperty.h
+++ b/third_party/WebKit/Source/core/frame/DOMWindowProperty.h
@@ -34,7 +34,7 @@ namespace blink {
class LocalDOMWindow;
class LocalFrame;
-class CORE_EXPORT DOMWindowProperty : public WillBeGarbageCollectedMixin {
+class CORE_EXPORT DOMWindowProperty : public GarbageCollectedMixin {
public:
explicit DOMWindowProperty(LocalFrame*);
@@ -43,7 +43,6 @@ public:
LocalFrame* frame() const { return m_frame; }
- EAGERLY_FINALIZE_WILL_BE_REMOVED();
DECLARE_VIRTUAL_TRACE();
protected:
@@ -53,7 +52,7 @@ protected:
virtual ~DOMWindowProperty();
#endif
- RawPtrWillBeMember<LocalFrame> m_frame;
+ Member<LocalFrame> m_frame;
#if !ENABLE(OILPAN)
private:
« no previous file with comments | « third_party/WebKit/Source/core/frame/DOMWindow.cpp ('k') | third_party/WebKit/Source/core/frame/DOMWindowTimers.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698