| Index: third_party/WebKit/Source/web/WebInputEventConversion.h
|
| diff --git a/third_party/WebKit/Source/web/WebInputEventConversion.h b/third_party/WebKit/Source/web/WebInputEventConversion.h
|
| index 182e58102b3eab259194af10f16e5c6499e49281..546b8417e0cb388800bfdfbf48f79b94eb372eab 100644
|
| --- a/third_party/WebKit/Source/web/WebInputEventConversion.h
|
| +++ b/third_party/WebKit/Source/web/WebInputEventConversion.h
|
| @@ -61,8 +61,12 @@ class WEB_EXPORT WebMouseEventBuilder
|
| // NOTE: This is only implemented for mousemove, mouseover, mouseout,
|
| // mousedown and mouseup. If the event mapping fails, the event type will
|
| // be set to Undefined.
|
| - WebMouseEventBuilder(const FrameViewBase*, const LayoutItem, const MouseEvent&);
|
| - WebMouseEventBuilder(const FrameViewBase*, const LayoutItem, const TouchEvent&);
|
| + WebMouseEventBuilder(const FrameViewBase*,
|
| + const LayoutItem,
|
| + const MouseEvent&);
|
| + WebMouseEventBuilder(const FrameViewBase*,
|
| + const LayoutItem,
|
| + const TouchEvent&);
|
| };
|
|
|
| // Converts a KeyboardEvent to a corresponding WebKeyboardEvent.
|
| @@ -88,17 +92,21 @@ class WEB_EXPORT WebTouchEventBuilder
|
| // and translation.
|
| WEB_EXPORT WebGestureEvent TransformWebGestureEvent(FrameViewBase*,
|
| const WebGestureEvent&);
|
| -WEB_EXPORT WebMouseEvent TransformWebMouseEvent(FrameViewBase*, const WebMouseEvent&);
|
| +WEB_EXPORT WebMouseEvent TransformWebMouseEvent(FrameViewBase*,
|
| + const WebMouseEvent&);
|
|
|
| WEB_EXPORT WebMouseWheelEvent
|
| TransformWebMouseWheelEvent(FrameViewBase*, const WebMouseWheelEvent&);
|
|
|
| -WEB_EXPORT WebTouchEvent TransformWebTouchEvent(FrameViewBase*, const WebTouchEvent&);
|
| +WEB_EXPORT WebTouchEvent TransformWebTouchEvent(FrameViewBase*,
|
| + const WebTouchEvent&);
|
|
|
| Vector<WebMouseEvent> WEB_EXPORT
|
| -TransformWebMouseEventVector(FrameViewBase*, const std::vector<const WebInputEvent*>&);
|
| +TransformWebMouseEventVector(FrameViewBase*,
|
| + const std::vector<const WebInputEvent*>&);
|
| Vector<WebTouchEvent> WEB_EXPORT
|
| -TransformWebTouchEventVector(FrameViewBase*, const std::vector<const WebInputEvent*>&);
|
| +TransformWebTouchEventVector(FrameViewBase*,
|
| + const std::vector<const WebInputEvent*>&);
|
|
|
| } // namespace blink
|
|
|
|
|