| Index: Source/core/events/TouchEvent.h
|
| diff --git a/Source/core/events/TouchEvent.h b/Source/core/events/TouchEvent.h
|
| index d929d9ecc9dc30e8454aa9bf2332fb256f1cf481..0800a3f03cf3866d4045e50b524c3c1cbecb5600 100644
|
| --- a/Source/core/events/TouchEvent.h
|
| +++ b/Source/core/events/TouchEvent.h
|
| @@ -43,7 +43,7 @@ public:
|
| }
|
| static PassRefPtr<TouchEvent> create(TouchList* touches,
|
| TouchList* targetTouches, TouchList* changedTouches,
|
| - const AtomicString& type, PassRefPtr<AbstractView> view,
|
| + const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view,
|
| int screenX, int screenY, int pageX, int pageY,
|
| bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
|
| {
|
| @@ -54,7 +54,7 @@ public:
|
|
|
| void initTouchEvent(TouchList* touches, TouchList* targetTouches,
|
| TouchList* changedTouches, const AtomicString& type,
|
| - PassRefPtr<AbstractView>, int screenX, int screenY,
|
| + PassRefPtrWillBeRawPtr<AbstractView>, int screenX, int screenY,
|
| int clientX, int clientY,
|
| bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
|
|
|
| @@ -76,7 +76,7 @@ private:
|
| TouchEvent();
|
| TouchEvent(TouchList* touches, TouchList* targetTouches,
|
| TouchList* changedTouches, const AtomicString& type,
|
| - PassRefPtr<AbstractView>, int screenX, int screenY, int pageX,
|
| + PassRefPtrWillBeRawPtr<AbstractView>, int screenX, int screenY, int pageX,
|
| int pageY,
|
| bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
|
|
|
|
|