| Index: Source/core/dom/Node.h
|
| diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
|
| index 16fb5c966e55274ce3267345597fc95e0dad1d42..59b0e5fa41552a46e76d44f9157c8ddbb8198a86 100644
|
| --- a/Source/core/dom/Node.h
|
| +++ b/Source/core/dom/Node.h
|
| @@ -617,21 +617,21 @@ public:
|
| virtual void postDispatchEventHandler(Event*, void* /*dataFromPreDispatch*/) { }
|
|
|
| using EventTarget::dispatchEvent;
|
| - virtual bool dispatchEvent(PassRefPtr<Event>) OVERRIDE;
|
| + virtual bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) OVERRIDE;
|
|
|
| - void dispatchScopedEvent(PassRefPtr<Event>);
|
| + void dispatchScopedEvent(PassRefPtrWillBeRawPtr<Event>);
|
| void dispatchScopedEventDispatchMediator(PassRefPtr<EventDispatchMediator>);
|
|
|
| virtual void handleLocalEvents(Event*);
|
|
|
| void dispatchSubtreeModifiedEvent();
|
| - bool dispatchDOMActivateEvent(int detail, PassRefPtr<Event> underlyingEvent);
|
| + bool dispatchDOMActivateEvent(int detail, PassRefPtrWillBeRawPtr<Event> underlyingEvent);
|
|
|
| bool dispatchKeyEvent(const PlatformKeyboardEvent&);
|
| bool dispatchWheelEvent(const PlatformWheelEvent&);
|
| bool dispatchMouseEvent(const PlatformMouseEvent&, const AtomicString& eventType, int clickCount = 0, Node* relatedTarget = 0);
|
| bool dispatchGestureEvent(const PlatformGestureEvent&);
|
| - bool dispatchTouchEvent(PassRefPtr<TouchEvent>);
|
| + bool dispatchTouchEvent(PassRefPtrWillBeRawPtr<TouchEvent>);
|
|
|
| void dispatchSimulatedClick(Event* underlyingEvent, SimulatedClickMouseEventOptions = SendNoEvents);
|
|
|
|
|