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

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

Issue 667943003: Standardize usage of virtual/override/final in content/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 ee8240e4638ef02428e60a9c0fc158bd331663a6..30705868eb3c941c017b6c22c85b0f574f5563a2 100644
--- a/content/browser/renderer_host/input/gesture_text_selector_unittest.cc
+++ b/content/browser/renderer_host/input/gesture_text_selector_unittest.cc
@@ -37,17 +37,17 @@ class GestureTextSelectorTest : public testing::Test,
}
// GestureTextSelectorClient implementation.
- virtual void ShowSelectionHandlesAutomatically() override {
+ void ShowSelectionHandlesAutomatically() override {
event_log_.push_back("Show");
}
- virtual void SelectRange(float x1, float y1, float x2, float y2) override {
+ void SelectRange(float x1, float y1, float x2, float y2) override {
std::stringstream ss;
ss << "SelectRange(" << x1 << ", " << y1 << ", " << x2 << ", " << y2 << ")";
event_log_.push_back(ss.str());
}
- virtual void LongPress(base::TimeTicks time, float x, float y) override {
+ void LongPress(base::TimeTicks time, float x, float y) override {
event_log_.push_back("LongPress");
}
« no previous file with comments | « content/browser/renderer_host/input/gesture_text_selector.h ('k') | content/browser/renderer_host/input/input_router.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698