| Index: content/browser/renderer_host/input/motion_event_web.h
|
| diff --git a/content/browser/renderer_host/input/motion_event_web.h b/content/browser/renderer_host/input/motion_event_web.h
|
| index f3d85abfc123b4a70fc89e211a240bc1e27b4aa3..34e954168b8baa6783685dc5970a19331ff13a06 100644
|
| --- a/content/browser/renderer_host/input/motion_event_web.h
|
| +++ b/content/browser/renderer_host/input/motion_event_web.h
|
| @@ -17,7 +17,7 @@ class MotionEventWeb : public ui::MotionEvent {
|
| ~MotionEventWeb() override;
|
|
|
| // ui::MotionEvent
|
| - int GetId() const override;
|
| + uint32 GetUniqueEventId() const override;
|
| Action GetAction() const override;
|
| int GetActionIndex() const override;
|
| size_t GetPointerCount() const override;
|
| @@ -39,6 +39,7 @@ class MotionEventWeb : public ui::MotionEvent {
|
| blink::WebTouchEvent event_;
|
| Action cached_action_;
|
| int cached_action_index_;
|
| + const uint32 unique_event_id_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(MotionEventWeb);
|
| };
|
|
|