| 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 #include "config.h" | 5 #include "config.h" |
| 6 #include "modules/battery/BatteryDispatcher.h" | 6 #include "modules/battery/BatteryDispatcher.h" |
| 7 | 7 |
| 8 #include "modules/battery/BatteryStatus.h" | 8 #include "modules/battery/BatteryStatus.h" |
| 9 #include "platform/NotImplemented.h" | 9 #include "platform/NotImplemented.h" |
| 10 #include "public/platform/Platform.h" | 10 #include "public/platform/Platform.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 BatteryDispatcher& BatteryDispatcher::instance() | 14 BatteryDispatcher& BatteryDispatcher::instance() |
| 15 { | 15 { |
| 16 DEFINE_STATIC_LOCAL(BatteryDispatcher, batteryDispatcher, ()); | 16 DEFINE_STATIC_LOCAL(Persistent<BatteryDispatcher>, batteryDispatcher, (new B
atteryDispatcher())); |
| 17 return batteryDispatcher; | 17 return *batteryDispatcher; |
| 18 } | 18 } |
| 19 | 19 |
| 20 BatteryDispatcher::BatteryDispatcher() | 20 BatteryDispatcher::BatteryDispatcher() |
| 21 { | 21 { |
| 22 } | 22 } |
| 23 | 23 |
| 24 BatteryDispatcher::~BatteryDispatcher() | 24 BatteryDispatcher::~BatteryDispatcher() |
| 25 { | 25 { |
| 26 } | 26 } |
| 27 | 27 |
| 28 void BatteryDispatcher::trace(Visitor* visitor) |
| 29 { |
| 30 visitor->trace(m_batteryStatus); |
| 31 PlatformEventDispatcher::trace(visitor); |
| 32 } |
| 33 |
| 28 void BatteryDispatcher::updateBatteryStatus(const WebBatteryStatus& batteryStatu
s) | 34 void BatteryDispatcher::updateBatteryStatus(const WebBatteryStatus& batteryStatu
s) |
| 29 { | 35 { |
| 30 m_batteryStatus = BatteryStatus::create(batteryStatus.charging, batteryStatu
s.chargingTime, batteryStatus.dischargingTime, batteryStatus.level); | 36 m_batteryStatus = BatteryStatus::create(batteryStatus.charging, batteryStatu
s.chargingTime, batteryStatus.dischargingTime, batteryStatus.level); |
| 31 notifyControllers(); | 37 notifyControllers(); |
| 32 } | 38 } |
| 33 | 39 |
| 34 BatteryStatus* BatteryDispatcher::latestData() | 40 BatteryStatus* BatteryDispatcher::latestData() |
| 35 { | 41 { |
| 36 return m_batteryStatus.get(); | 42 return m_batteryStatus.get(); |
| 37 } | 43 } |
| 38 | 44 |
| 39 void BatteryDispatcher::startListening() | 45 void BatteryDispatcher::startListening() |
| 40 { | 46 { |
| 41 Platform::current()->startListening(WebPlatformEventBattery, this); | 47 Platform::current()->startListening(WebPlatformEventBattery, this); |
| 42 } | 48 } |
| 43 | 49 |
| 44 void BatteryDispatcher::stopListening() | 50 void BatteryDispatcher::stopListening() |
| 45 { | 51 { |
| 46 Platform::current()->stopListening(WebPlatformEventBattery); | 52 Platform::current()->stopListening(WebPlatformEventBattery); |
| 47 m_batteryStatus.clear(); | 53 m_batteryStatus.clear(); |
| 48 } | 54 } |
| 49 | 55 |
| 50 } // namespace blink | 56 } // namespace blink |
| OLD | NEW |