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

Unified Diff: athena/screen/screen_manager_impl.cc

Issue 641683003: C++11 override style change for athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase 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 | « athena/screen/screen_manager_impl.h ('k') | athena/screen/screen_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/screen/screen_manager_impl.cc
diff --git a/athena/screen/screen_manager_impl.cc b/athena/screen/screen_manager_impl.cc
index a650e9680ded04cbac2c68d2ab6bc2c8480b3586..2ee184443607350676e9075113ed8cc0ddb7825f 100644
--- a/athena/screen/screen_manager_impl.cc
+++ b/athena/screen/screen_manager_impl.cc
@@ -80,7 +80,7 @@ aura::Window* GetContainer(aura::Window* window) {
class AthenaFocusRules : public wm::BaseFocusRules {
public:
AthenaFocusRules() {}
- virtual ~AthenaFocusRules() {}
+ ~AthenaFocusRules() override {}
// wm::BaseFocusRules:
virtual bool SupportsChildActivation(aura::Window* window) const override {
@@ -124,8 +124,7 @@ class AthenaScreenPositionClient : public aura::client::ScreenPositionClient {
public:
AthenaScreenPositionClient() {
}
- virtual ~AthenaScreenPositionClient() {
- }
+ ~AthenaScreenPositionClient() override {}
private:
// aura::client::ScreenPositionClient:
@@ -161,7 +160,7 @@ class AthenaWindowTargeter : public aura::WindowTargeter {
explicit AthenaWindowTargeter(aura::Window* root_window)
: root_window_(root_window) {}
- virtual ~AthenaWindowTargeter() {}
+ ~AthenaWindowTargeter() override {}
private:
// aura::WindowTargeter:
« no previous file with comments | « athena/screen/screen_manager_impl.h ('k') | athena/screen/screen_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698