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

Unified Diff: content/browser/time_zone_monitor_win.cc

Issue 1091093006: Update {virtual,override} to follow C++11 style in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Back out some webrtc files. 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
Index: content/browser/time_zone_monitor_win.cc
diff --git a/content/browser/time_zone_monitor_win.cc b/content/browser/time_zone_monitor_win.cc
index 2e8f9a56ed19ca8b5506a135419b771dde6f0286..f9205bc7a4a39db10ba7584be8bc936db976d926 100644
--- a/content/browser/time_zone_monitor_win.cc
+++ b/content/browser/time_zone_monitor_win.cc
@@ -18,15 +18,15 @@ class TimeZoneMonitorWin : public TimeZoneMonitor,
gfx::SingletonHwnd::GetInstance()->AddObserver(this);
}
- virtual ~TimeZoneMonitorWin() {
+ ~TimeZoneMonitorWin() override {
gfx::SingletonHwnd::GetInstance()->RemoveObserver(this);
}
// gfx::SingletonHwnd::Observer implementation.
- virtual void OnWndProc(HWND hwnd,
- UINT message,
- WPARAM wparam,
- LPARAM lparam) override {
+ void OnWndProc(HWND hwnd,
+ UINT message,
+ WPARAM wparam,
+ LPARAM lparam) override {
if (message != WM_TIMECHANGE) {
return;
}
« no previous file with comments | « content/browser/system_message_window_win_unittest.cc ('k') | content/browser/web_contents/aura/gesture_nav_simple.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698