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