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

Unified Diff: content/browser/time_zone_monitor_win.h

Issue 193763002: Listen to WM_TIMECHANGE messages in RenderViewHostImpl on windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: process host loop Created 6 years, 9 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 | « content/browser/browser_main_loop.cc ('k') | content/browser/time_zone_monitor_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/time_zone_monitor_win.h
diff --git a/content/browser/time_zone_monitor_win.h b/content/browser/time_zone_monitor_win.h
new file mode 100644
index 0000000000000000000000000000000000000000..a875d25821d1f44e2b7022980babeb0acb97ff9d
--- /dev/null
+++ b/content/browser/time_zone_monitor_win.h
@@ -0,0 +1,23 @@
+// Copyright (c) 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/gfx/win/singleton_hwnd.h"
+
+namespace content {
+
+class TimeZoneMonitorWin : gfx::SingletonHwnd::Observer {
+ public:
+ TimeZoneMonitorWin();
+ virtual ~TimeZoneMonitorWin();
+
+ // gfx::SingletonHwnd::Observer implementation.
+ virtual void OnWndProc(HWND hwnd,
+ UINT message,
+ WPARAM wparam,
+ LPARAM lparam) OVERRIDE;
+ private:
+ DISALLOW_COPY_AND_ASSIGN(TimeZoneMonitorWin);
+};
+
+}
« no previous file with comments | « content/browser/browser_main_loop.cc ('k') | content/browser/time_zone_monitor_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698