Index: third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.h |
diff --git a/third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.h b/third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e771359eb92300c73a3cea8863ce714db52503d7 |
--- /dev/null |
+++ b/third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.h |
@@ -0,0 +1,31 @@ |
+// Copyright 2016 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. |
+ |
+#ifndef TimeZoneMonitorClient_h |
+#define TimeZoneMonitorClient_h |
+ |
+#include "device/time_zone_monitor/public/interfaces/time_zone_monitor.mojom.h" |
+#include "mojo/public/cpp/bindings/binding.h" |
+ |
+namespace blink { |
+ |
+class TimeZoneMonitorClient final |
+ : public device::mojom::TimeZoneMonitorClient { |
+ public: |
+ static void Init(); |
+ |
+ ~TimeZoneMonitorClient() override; |
+ |
+ private: |
+ TimeZoneMonitorClient(); |
+ |
+ // device::mojom::TimeZoneClient: |
+ void OnTimeZoneChange(const std::string& tzInfo) override; |
+ |
+ mojo::Binding<device::mojom::TimeZoneMonitorClient> m_binding; |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // TimeZoneMonitorClient_h |