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

Unified Diff: ash/test/ash_test_base.cc

Issue 683623002: Standardize usage of virtual/override/final specifiers. (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
« no previous file with comments | « ash/test/ash_test_base.h ('k') | ash/test/ash_test_helper_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/test/ash_test_base.cc
diff --git a/ash/test/ash_test_base.cc b/ash/test/ash_test_base.cc
index d31c5cffc9301a96ba61c29eab982c7de490a4a3..2f958cf688efcfeea444af50390fce6d5497516c 100644
--- a/ash/test/ash_test_base.cc
+++ b/ash/test/ash_test_base.cc
@@ -59,10 +59,10 @@ class AshEventGeneratorDelegate
: public aura::test::EventGeneratorDelegateAura {
public:
AshEventGeneratorDelegate() {}
- virtual ~AshEventGeneratorDelegate() {}
+ ~AshEventGeneratorDelegate() override {}
// aura::test::EventGeneratorDelegateAura overrides:
- virtual aura::WindowTreeHost* GetHostAt(
+ aura::WindowTreeHost* GetHostAt(
const gfx::Point& point_in_screen) const override {
gfx::Screen* screen = Shell::GetScreen();
gfx::Display display = screen->GetDisplayNearestPoint(point_in_screen);
@@ -70,7 +70,7 @@ class AshEventGeneratorDelegate
GetRootWindowForDisplayId(display.id())->GetHost();
}
- virtual aura::client::ScreenPositionClient* GetScreenPositionClient(
+ aura::client::ScreenPositionClient* GetScreenPositionClient(
const aura::Window* window) const override {
return aura::client::GetScreenPositionClient(window->GetRootWindow());
}
« no previous file with comments | « ash/test/ash_test_base.h ('k') | ash/test/ash_test_helper_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698