| Index: content/browser/renderer_host/input/motion_event_web.cc
|
| diff --git a/content/browser/renderer_host/input/motion_event_web.cc b/content/browser/renderer_host/input/motion_event_web.cc
|
| index d1ff8a3c84f7baa22a46da6f2294c934a0cb5ee9..0d812b229f81dc37aab1d3c4d1dc5d577c0af316 100644
|
| --- a/content/browser/renderer_host/input/motion_event_web.cc
|
| +++ b/content/browser/renderer_host/input/motion_event_web.cc
|
| @@ -143,6 +143,17 @@ float MotionEventWeb::GetHistoricalY(size_t pointer_index,
|
| return 0.f;
|
| }
|
|
|
| +ui::MotionEvent::ToolType MotionEventWeb::GetToolType(
|
| + size_t pointer_index) const {
|
| + NOTIMPLEMENTED();
|
| + return TOOL_TYPE_UNKNOWN;
|
| +}
|
| +
|
| +int MotionEventWeb::GetButtonState() const {
|
| + NOTIMPLEMENTED();
|
| + return 0;
|
| +}
|
| +
|
| scoped_ptr<ui::MotionEvent> MotionEventWeb::Clone() const {
|
| return scoped_ptr<MotionEvent>(new MotionEventWeb(event_));
|
| }
|
|
|