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

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: 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: athena/screen/screen_manager_impl.cc
diff --git a/athena/screen/screen_manager_impl.cc b/athena/screen/screen_manager_impl.cc
index 9cc22e7390de0001f9c245550c37959f0ceba07f..749fd25ae02d426bb22f1396750b12f81bf3cd84 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,7 +124,7 @@ class AthenaScreenPositionClient : public aura::client::ScreenPositionClient {
public:
AthenaScreenPositionClient() {
}
- virtual ~AthenaScreenPositionClient() {
+ ~AthenaScreenPositionClient() override {
}
private:
@@ -161,7 +161,7 @@ class AthenaWindowTargeter : public aura::WindowTargeter {
explicit AthenaWindowTargeter(aura::Window* root_window)
: root_window_(root_window) {}
- virtual ~AthenaWindowTargeter() {}
+ ~AthenaWindowTargeter() override {}
private:
// aura::WindowTargeter:

Powered by Google App Engine
This is Rietveld 408576698