| Index: Source/core/events/MouseEvent.h
|
| diff --git a/Source/core/events/MouseEvent.h b/Source/core/events/MouseEvent.h
|
| index 3783fa6a98e34948a74ce217a149398a9637b54d..0178527ce0d0c2ba94f0952ab867e166e810a3e5 100644
|
| --- a/Source/core/events/MouseEvent.h
|
| +++ b/Source/core/events/MouseEvent.h
|
| @@ -55,19 +55,19 @@ public:
|
| return adoptRef(new MouseEvent);
|
| }
|
|
|
| - static PassRefPtr<MouseEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>,
|
| + static PassRefPtr<MouseEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>,
|
| int detail, int screenX, int screenY, int pageX, int pageY,
|
| int movementX, int movementY,
|
| bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
|
| PassRefPtr<EventTarget> relatedTarget, PassRefPtrWillBeRawPtr<Clipboard>, bool isSimulated = false);
|
|
|
| - static PassRefPtr<MouseEvent> create(const AtomicString& eventType, PassRefPtr<AbstractView>, const PlatformMouseEvent&, int detail, PassRefPtr<Node> relatedTarget);
|
| + static PassRefPtr<MouseEvent> create(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, const PlatformMouseEvent&, int detail, PassRefPtr<Node> relatedTarget);
|
|
|
| static PassRefPtr<MouseEvent> create(const AtomicString& eventType, const MouseEventInit&);
|
|
|
| virtual ~MouseEvent();
|
|
|
| - void initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>,
|
| + void initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>,
|
| int detail, int screenX, int screenY, int clientX, int clientY,
|
| bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
|
| unsigned short button, PassRefPtr<EventTarget> relatedTarget);
|
| @@ -94,7 +94,7 @@ public:
|
| virtual void trace(Visitor*) OVERRIDE;
|
|
|
| protected:
|
| - MouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>,
|
| + MouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>,
|
| int detail, int screenX, int screenY, int pageX, int pageY,
|
| int movementX, int movementY,
|
| bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
|
| @@ -113,13 +113,13 @@ private:
|
|
|
| class SimulatedMouseEvent FINAL : public MouseEvent {
|
| public:
|
| - static PassRefPtr<SimulatedMouseEvent> create(const AtomicString& eventType, PassRefPtr<AbstractView>, PassRefPtr<Event> underlyingEvent);
|
| + static PassRefPtr<SimulatedMouseEvent> create(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtr<Event> underlyingEvent);
|
| virtual ~SimulatedMouseEvent();
|
|
|
| virtual void trace(Visitor*) OVERRIDE;
|
|
|
| private:
|
| - SimulatedMouseEvent(const AtomicString& eventType, PassRefPtr<AbstractView>, PassRefPtr<Event> underlyingEvent);
|
| + SimulatedMouseEvent(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtr<Event> underlyingEvent);
|
| };
|
|
|
| class MouseEventDispatchMediator FINAL : public EventDispatchMediator {
|
|
|