| Index: third_party/WebKit/Source/core/events/EventDispatcher.h
|
| diff --git a/third_party/WebKit/Source/core/events/EventDispatcher.h b/third_party/WebKit/Source/core/events/EventDispatcher.h
|
| index 972fa2146008d01f36a73bbfa3e18c1045720502..5a543faa22572925a5249587556993b146ccb2bc 100644
|
| --- a/third_party/WebKit/Source/core/events/EventDispatcher.h
|
| +++ b/third_party/WebKit/Source/core/events/EventDispatcher.h
|
| @@ -49,8 +49,8 @@ enum EventDispatchContinuation {
|
| class EventDispatcher {
|
| STACK_ALLOCATED();
|
| public:
|
| - static DispatchEventResult dispatchEvent(Node&, PassRefPtrWillBeRawPtr<EventDispatchMediator>);
|
| - static void dispatchScopedEvent(Node&, PassRefPtrWillBeRawPtr<EventDispatchMediator>);
|
| + static DispatchEventResult dispatchEvent(Node&, RawPtr<EventDispatchMediator>);
|
| + static void dispatchScopedEvent(Node&, RawPtr<EventDispatchMediator>);
|
|
|
| static void dispatchSimulatedClick(Node&, Event* underlyingEvent, SimulatedClickMouseEventOptions, SimulatedClickCreationScope);
|
|
|
| @@ -59,7 +59,7 @@ public:
|
| Event& event() const { return *m_event; }
|
|
|
| private:
|
| - EventDispatcher(Node&, PassRefPtrWillBeRawPtr<Event>);
|
| + EventDispatcher(Node&, RawPtr<Event>);
|
|
|
| EventDispatchContinuation dispatchEventPreProcess(void*& preDispatchEventHandlerResult);
|
| EventDispatchContinuation dispatchEventAtCapturing();
|
| @@ -67,9 +67,9 @@ private:
|
| void dispatchEventAtBubbling();
|
| void dispatchEventPostProcess(void* preDispatchEventHandlerResult);
|
|
|
| - RefPtrWillBeMember<Node> m_node;
|
| - RefPtrWillBeMember<Event> m_event;
|
| - RefPtrWillBeMember<FrameView> m_view;
|
| + Member<Node> m_node;
|
| + Member<Event> m_event;
|
| + Member<FrameView> m_view;
|
| #if ENABLE(ASSERT)
|
| bool m_eventDispatched;
|
| #endif
|
|
|