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

Unified Diff: content/browser/time_zone_monitor_chromeos.cc

Issue 865123003: Update {virtual,override,final} to follow C++11 style in content, round 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix format Created 5 years, 11 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: content/browser/time_zone_monitor_chromeos.cc
diff --git a/content/browser/time_zone_monitor_chromeos.cc b/content/browser/time_zone_monitor_chromeos.cc
index 8c6aa0bd0a3466724653afd004871f35f85b5d93..7ad81789bcabbde2a46709dbf5f4e36cb9cc9baf 100644
--- a/content/browser/time_zone_monitor_chromeos.cc
+++ b/content/browser/time_zone_monitor_chromeos.cc
@@ -16,12 +16,12 @@ class TimeZoneMonitorChromeOS
chromeos::system::TimezoneSettings::GetInstance()->AddObserver(this);
}
- virtual ~TimeZoneMonitorChromeOS() {
+ ~TimeZoneMonitorChromeOS() override {
chromeos::system::TimezoneSettings::GetInstance()->RemoveObserver(this);
}
// chromeos::system::TimezoneSettings::Observer implementation.
- virtual void TimezoneChanged(const icu::TimeZone& time_zone) override {
+ void TimezoneChanged(const icu::TimeZone& time_zone) override {
NotifyRenderers();
}
« no previous file with comments | « content/browser/net_info_browsertest.cc ('k') | content/browser/web_contents/touch_editable_impl_aura_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698