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

Unified Diff: net/base/network_change_notifier_win_unittest.cc

Issue 1088903008: Update {virtual,override} to follow C++11 style in net. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add an override. Created 5 years, 8 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 | « net/base/elements_upload_data_stream_unittest.cc ('k') | net/cookies/cookie_monster.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/network_change_notifier_win_unittest.cc
diff --git a/net/base/network_change_notifier_win_unittest.cc b/net/base/network_change_notifier_win_unittest.cc
index 25873c37f2003300c666690877517b8e70bae205..ca59750f813f584760ebbdbbf21eb0ed739a9a9e 100644
--- a/net/base/network_change_notifier_win_unittest.cc
+++ b/net/base/network_change_notifier_win_unittest.cc
@@ -24,15 +24,15 @@ class TestNetworkChangeNotifierWin : public NetworkChangeNotifierWin {
public:
TestNetworkChangeNotifierWin() {}
- virtual ~TestNetworkChangeNotifierWin() {
+ ~TestNetworkChangeNotifierWin() override {
// This is needed so we don't try to stop watching for IP address changes,
// as we never actually started.
set_is_watching(false);
}
// From NetworkChangeNotifierWin.
- virtual NetworkChangeNotifier::ConnectionType
- RecomputeCurrentConnectionType() const override {
+ NetworkChangeNotifier::ConnectionType RecomputeCurrentConnectionType()
+ const override {
return NetworkChangeNotifier::CONNECTION_UNKNOWN;
}
« no previous file with comments | « net/base/elements_upload_data_stream_unittest.cc ('k') | net/cookies/cookie_monster.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698