| 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;
|
| }
|
|
|