| Index: ui/events/gesture_detection/motion_event_buffer_unittest.cc
|
| diff --git a/ui/events/gesture_detection/motion_event_buffer_unittest.cc b/ui/events/gesture_detection/motion_event_buffer_unittest.cc
|
| index f51897f4e6087cb6755f87f70ce6c2865da5a54a..badbd9883f460155fcac2c355bc721d14e8e24ae 100644
|
| --- a/ui/events/gesture_detection/motion_event_buffer_unittest.cc
|
| +++ b/ui/events/gesture_detection/motion_event_buffer_unittest.cc
|
| @@ -44,11 +44,11 @@ class MotionEventBufferTest : public testing::Test,
|
| virtual ~MotionEventBufferTest() {}
|
|
|
| // MotionEventBufferClient implementation.
|
| - virtual void ForwardMotionEvent(const MotionEvent& event) OVERRIDE {
|
| + virtual void ForwardMotionEvent(const MotionEvent& event) override {
|
| forwarded_events_.push_back(event.Clone().release());
|
| }
|
|
|
| - virtual void SetNeedsFlush() OVERRIDE { needs_flush_ = true; }
|
| + virtual void SetNeedsFlush() override { needs_flush_ = true; }
|
|
|
| bool GetAndResetNeedsFlush() {
|
| bool needs_flush = needs_flush_;
|
|
|