| Index: third_party/WebKit/Source/core/events/WindowEventContext.h
|
| diff --git a/third_party/WebKit/Source/core/events/WindowEventContext.h b/third_party/WebKit/Source/core/events/WindowEventContext.h
|
| index 55109fc6fcf7523252b95ac19584d62b26aed373..3f45512c6c8d87dce2ca84c3e5a5facf3067d5df 100644
|
| --- a/third_party/WebKit/Source/core/events/WindowEventContext.h
|
| +++ b/third_party/WebKit/Source/core/events/WindowEventContext.h
|
| @@ -38,8 +38,7 @@ class Event;
|
| class Node;
|
| class NodeEventContext;
|
|
|
| -class WindowEventContext : public NoBaseWillBeGarbageCollected<WindowEventContext> {
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(WindowEventContext);
|
| +class WindowEventContext : public GarbageCollected<WindowEventContext> {
|
| WTF_MAKE_NONCOPYABLE(WindowEventContext);
|
| public:
|
| WindowEventContext(Event&, const NodeEventContext& topNodeEventContext);
|
| @@ -51,8 +50,8 @@ public:
|
| DECLARE_TRACE();
|
|
|
| private:
|
| - RefPtrWillBeMember<LocalDOMWindow> m_window;
|
| - RefPtrWillBeMember<EventTarget> m_target;
|
| + Member<LocalDOMWindow> m_window;
|
| + Member<EventTarget> m_target;
|
| };
|
|
|
| inline LocalDOMWindow* WindowEventContext::window() const
|
|
|