Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(714)

Unified Diff: content/browser/renderer_host/input/gesture_event_queue_unittest.cc

Issue 616603004: Replacing the OVERRIDE with override and FINAL with final in content/browser/renderer_host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/input/gesture_event_queue_unittest.cc
diff --git a/content/browser/renderer_host/input/gesture_event_queue_unittest.cc b/content/browser/renderer_host/input/gesture_event_queue_unittest.cc
index 4a36a1052c8d33e5734060075fc635332f6fdbff..3fbae1ec4d27295ca5aee28a1459164cfa0c11ea 100644
--- a/content/browser/renderer_host/input/gesture_event_queue_unittest.cc
+++ b/content/browser/renderer_host/input/gesture_event_queue_unittest.cc
@@ -34,11 +34,11 @@ class GestureEventQueueTest : public testing::Test,
virtual ~GestureEventQueueTest() {}
// testing::Test
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
queue_.reset(new GestureEventQueue(this, this, DefaultConfig()));
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
// Process all pending tasks to avoid leaks.
RunUntilIdle();
queue_.reset();
@@ -46,7 +46,7 @@ class GestureEventQueueTest : public testing::Test,
// GestureEventQueueClient
virtual void SendGestureEventImmediately(
- const GestureEventWithLatencyInfo& event) OVERRIDE {
+ const GestureEventWithLatencyInfo& event) override {
++sent_gesture_event_count_;
if (sync_ack_result_) {
scoped_ptr<InputEventAckState> ack_result = sync_ack_result_.Pass();
@@ -56,7 +56,7 @@ class GestureEventQueueTest : public testing::Test,
virtual void OnGestureEventAck(
const GestureEventWithLatencyInfo& event,
- InputEventAckState ack_result) OVERRIDE {
+ InputEventAckState ack_result) override {
++acked_gesture_event_count_;
last_acked_event_ = event.event;
if (sync_followup_event_) {
@@ -67,7 +67,7 @@ class GestureEventQueueTest : public testing::Test,
// TouchpadTapSuppressionControllerClient
virtual void SendMouseEventImmediately(
- const MouseEventWithLatencyInfo& event) OVERRIDE {
+ const MouseEventWithLatencyInfo& event) override {
}
protected:

Powered by Google App Engine
This is Rietveld 408576698