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

Unified Diff: ash/display/mirror_window_controller.cc

Issue 621133002: replace OVERRIDE and FINAL with override and final in ash/ (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/display/mirror_window_controller.h ('k') | ash/display/mirror_window_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/display/mirror_window_controller.cc
diff --git a/ash/display/mirror_window_controller.cc b/ash/display/mirror_window_controller.cc
index f21c8445b21249531926887b3ad9685a389bbb0b..978449e0d5bdda246b34a1779b94f3cd44ed3399 100644
--- a/ash/display/mirror_window_controller.cc
+++ b/ash/display/mirror_window_controller.cc
@@ -62,16 +62,16 @@ class NoneCaptureClient : public aura::client::CaptureClient {
private:
// Does a capture on the |window|.
- virtual void SetCapture(aura::Window* window) OVERRIDE {}
+ virtual void SetCapture(aura::Window* window) override {}
// Releases a capture from the |window|.
- virtual void ReleaseCapture(aura::Window* window) OVERRIDE {}
+ virtual void ReleaseCapture(aura::Window* window) override {}
// Returns the current capture window.
- virtual aura::Window* GetCaptureWindow() OVERRIDE {
+ virtual aura::Window* GetCaptureWindow() override {
return NULL;
}
- virtual aura::Window* GetGlobalCaptureWindow() OVERRIDE {
+ virtual aura::Window* GetGlobalCaptureWindow() override {
return NULL;
}
« no previous file with comments | « ash/display/mirror_window_controller.h ('k') | ash/display/mirror_window_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698