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

Unified Diff: content/browser/renderer_host/input/gesture_text_selector_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_text_selector_unittest.cc
diff --git a/content/browser/renderer_host/input/gesture_text_selector_unittest.cc b/content/browser/renderer_host/input/gesture_text_selector_unittest.cc
index 7978cb913d447589763a873ed72d04442ee727a0..2d162458a97cf5831fe6e583dad96966355b88a4 100644
--- a/content/browser/renderer_host/input/gesture_text_selector_unittest.cc
+++ b/content/browser/renderer_host/input/gesture_text_selector_unittest.cc
@@ -26,26 +26,26 @@ class GestureTextSelectorTest : public testing::Test,
virtual ~GestureTextSelectorTest() {}
// Test implementation.
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
selector_.reset(new GestureTextSelector(this));
event_log_.clear();
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
selector_.reset();
event_log_.clear();
}
// GestureTextSelectorClient implementation.
- virtual void ShowSelectionHandlesAutomatically() OVERRIDE {
+ virtual void ShowSelectionHandlesAutomatically() override {
event_log_.push_back("Show");
}
- virtual void SelectRange(float x1, float y1, float x2, float y2) OVERRIDE {
+ virtual void SelectRange(float x1, float y1, float x2, float y2) override {
event_log_.push_back("SelectRange");
}
- virtual void LongPress(base::TimeTicks time, float x, float y) OVERRIDE {
+ virtual void LongPress(base::TimeTicks time, float x, float y) override {
event_log_.push_back("LongPress");
}

Powered by Google App Engine
This is Rietveld 408576698