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

Unified Diff: athena/system/network_selector.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/system/background_controller.cc ('k') | athena/system/orientation_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/system/network_selector.cc
diff --git a/athena/system/network_selector.cc b/athena/system/network_selector.cc
index dc939482f852faf1c6953548eca9ce31095ee5d1..7d4920bf46c918d0e4c5343a54301372b683f731 100644
--- a/athena/system/network_selector.cc
+++ b/athena/system/network_selector.cc
@@ -97,7 +97,7 @@ class PasswordView : public views::View, public views::ButtonListener {
AddChildView(container);
}
- virtual ~PasswordView() {}
+ ~PasswordView() override {}
private:
void CloseDialog(bool successful) { callback_.Run(successful); }
@@ -204,7 +204,7 @@ class NetworkRow : public views::View {
Update(network);
}
- virtual ~NetworkRow() {}
+ ~NetworkRow() override {}
void Update(const ui::NetworkInfo& network) {
network_ = network;
@@ -326,7 +326,7 @@ class NetworkSelector : public ui::NetworkListDelegate,
FROM_HERE);
}
- virtual ~NetworkSelector() {
+ ~NetworkSelector() override {
NetworkHandler::Get()->network_state_handler()->RemoveObserver(this,
FROM_HERE);
}
« no previous file with comments | « athena/system/background_controller.cc ('k') | athena/system/orientation_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698