Index: Source/core/events/MouseEvent.h |
diff --git a/Source/core/events/MouseEvent.h b/Source/core/events/MouseEvent.h |
index 9b3056b72226df6277744b9437974d0a4b476f1d..700269b6563302a1ba5cf40149151e0068b55964 100644 |
--- a/Source/core/events/MouseEvent.h |
+++ b/Source/core/events/MouseEvent.h |
@@ -113,22 +113,22 @@ private: |
class SimulatedMouseEvent FINAL : public MouseEvent { |
public: |
- static PassRefPtrWillBeRawPtr<SimulatedMouseEvent> create(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtr<Event> underlyingEvent); |
+ static PassRefPtrWillBeRawPtr<SimulatedMouseEvent> create(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtrWillBeRawPtr<Event> underlyingEvent); |
virtual ~SimulatedMouseEvent(); |
virtual void trace(Visitor*) OVERRIDE; |
private: |
- SimulatedMouseEvent(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtr<Event> underlyingEvent); |
+ SimulatedMouseEvent(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtrWillBeRawPtr<Event> underlyingEvent); |
}; |
class MouseEventDispatchMediator FINAL : public EventDispatchMediator { |
public: |
enum MouseEventType { SyntheticMouseEvent, NonSyntheticMouseEvent}; |
- static PassRefPtr<MouseEventDispatchMediator> create(PassRefPtr<MouseEvent>, MouseEventType = NonSyntheticMouseEvent); |
+ static PassRefPtr<MouseEventDispatchMediator> create(PassRefPtrWillBeRawPtr<MouseEvent>, MouseEventType = NonSyntheticMouseEvent); |
private: |
- explicit MouseEventDispatchMediator(PassRefPtr<MouseEvent>, MouseEventType); |
+ explicit MouseEventDispatchMediator(PassRefPtrWillBeRawPtr<MouseEvent>, MouseEventType); |
MouseEvent* event() const; |
virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE; |