| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BatteryDispatcher_h | 5 #ifndef BatteryDispatcher_h |
| 6 #define BatteryDispatcher_h | 6 #define BatteryDispatcher_h |
| 7 | 7 |
| 8 #include "core/frame/PlatformEventDispatcher.h" | 8 #include "core/frame/PlatformEventDispatcher.h" |
| 9 #include "device/battery/battery_monitor.mojom.h" |
| 9 #include "modules/ModulesExport.h" | 10 #include "modules/ModulesExport.h" |
| 10 #include "modules/battery/BatteryManager.h" | 11 #include "modules/battery/BatteryManager.h" |
| 11 #include "platform/battery/battery_dispatcher_proxy.h" | 12 #include "modules/battery/battery_status.h" |
| 12 #include "wtf/OwnPtr.h" | 13 #include "wtf/OwnPtr.h" |
| 13 | 14 |
| 14 namespace blink { | 15 namespace blink { |
| 15 | 16 |
| 16 class MODULES_EXPORT BatteryDispatcher final : public GarbageCollectedFinalized<
BatteryDispatcher>, public PlatformEventDispatcher, public BatteryDispatcherProx
y::Listener { | 17 class MODULES_EXPORT BatteryDispatcher final : public GarbageCollectedFinalized<
BatteryDispatcher>, public PlatformEventDispatcher { |
| 17 USING_GARBAGE_COLLECTED_MIXIN(BatteryDispatcher); | 18 USING_GARBAGE_COLLECTED_MIXIN(BatteryDispatcher); |
| 19 WTF_MAKE_NONCOPYABLE(BatteryDispatcher); |
| 18 public: | 20 public: |
| 19 static BatteryDispatcher& instance(); | 21 static BatteryDispatcher& instance(); |
| 20 ~BatteryDispatcher() override; | |
| 21 | 22 |
| 22 const BatteryStatus* latestData() const | 23 const BatteryStatus* latestData() const |
| 23 { | 24 { |
| 24 return m_hasLatestData ? &m_batteryStatus : nullptr; | 25 return m_hasLatestData ? &m_batteryStatus : nullptr; |
| 25 } | 26 } |
| 26 | 27 |
| 27 // Inherited from BatteryDispatcherProxy::Listener. | 28 void updateBatteryStatusForTesting(const BatteryStatus& batteryStatus) |
| 28 void OnUpdateBatteryStatus(const BatteryStatus&) override; | 29 { |
| 30 updateBatteryStatus(batteryStatus); |
| 31 } |
| 29 | 32 |
| 30 private: | 33 private: |
| 31 BatteryDispatcher(); | 34 BatteryDispatcher(); |
| 32 | 35 |
| 36 void queryNextStatus(); |
| 37 void onDidChange(device::BatteryStatusPtr); |
| 38 void updateBatteryStatus(const BatteryStatus&); |
| 39 |
| 33 // Inherited from PlatformEventDispatcher. | 40 // Inherited from PlatformEventDispatcher. |
| 34 void startListening() override; | 41 void startListening() override; |
| 35 void stopListening() override; | 42 void stopListening() override; |
| 36 | 43 |
| 44 device::BatteryMonitorPtr m_monitor; |
| 37 BatteryStatus m_batteryStatus; | 45 BatteryStatus m_batteryStatus; |
| 38 bool m_hasLatestData; | 46 bool m_hasLatestData; |
| 39 OwnPtr<BatteryDispatcherProxy> m_batteryDispatcherProxy; | |
| 40 }; | 47 }; |
| 41 | 48 |
| 42 } // namespace blink | 49 } // namespace blink |
| 43 | 50 |
| 44 #endif // BatteryDispatcher_h | 51 #endif // BatteryDispatcher_h |
| OLD | NEW |