OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ui/gfx/win/singleton_hwnd.h" |
| 6 |
| 7 namespace content { |
| 8 |
| 9 class TimeZoneMonitorWin : gfx::SingletonHwnd::Observer { |
| 10 public: |
| 11 TimeZoneMonitorWin(); |
| 12 virtual ~TimeZoneMonitorWin(); |
| 13 |
| 14 // gfx::SingletonHwnd::Observer implementation. |
| 15 virtual void OnWndProc(HWND hwnd, |
| 16 UINT message, |
| 17 WPARAM wparam, |
| 18 LPARAM lparam) OVERRIDE; |
| 19 private: |
| 20 DISALLOW_COPY_AND_ASSIGN(TimeZoneMonitorWin); |
| 21 }; |
| 22 |
| 23 } |
OLD | NEW |