| Index: Source/core/events/TouchEvent.cpp
|
| diff --git a/Source/core/events/TouchEvent.cpp b/Source/core/events/TouchEvent.cpp
|
| index cd7f311cc0b2a5dd3d62ae9935221b7a6bf20495..86798161f62f4b0c6cb060a61f57f4a179d11c87 100644
|
| --- a/Source/core/events/TouchEvent.cpp
|
| +++ b/Source/core/events/TouchEvent.cpp
|
| @@ -40,7 +40,7 @@ TouchEvent::TouchEvent()
|
|
|
| TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches,
|
| TouchList* changedTouches, const AtomicString& type,
|
| - PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY,
|
| + PassRefPtrWillBeRawPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY,
|
| bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
|
| : MouseRelatedEvent(type, true, true, view, 0, IntPoint(screenX, screenY),
|
| IntPoint(pageX, pageY),
|
| @@ -59,7 +59,7 @@ TouchEvent::~TouchEvent()
|
|
|
| void TouchEvent::initTouchEvent(TouchList* touches, TouchList* targetTouches,
|
| TouchList* changedTouches, const AtomicString& type,
|
| - PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY,
|
| + PassRefPtrWillBeRawPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY,
|
| bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
|
| {
|
| if (dispatched())
|
|
|