| // Copyright 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. |
| |
| #ifndef BatteryManager_h |
| #define BatteryManager_h |
| |
| #include "bindings/core/v8/ActiveScriptWrappable.h" |
| #include "bindings/core/v8/ScriptPromise.h" |
| #include "bindings/core/v8/ScriptPromiseProperty.h" |
| #include "core/dom/ActiveDOMObject.h" |
| #include "core/dom/ContextLifecycleObserver.h" |
| #include "core/frame/PlatformEventController.h" |
| #include "modules/EventTargetModules.h" |
| #include "modules/battery/battery_status.h" |
| #include "platform/heap/Handle.h" |
| |
| namespace blink { |
| |
| class BatteryManager final : public EventTargetWithInlineData, public ActiveScriptWrappable, public ActiveDOMObject, public PlatformEventController { |
| DEFINE_WRAPPERTYPEINFO(); |
| USING_GARBAGE_COLLECTED_MIXIN(BatteryManager); |
| public: |
| static BatteryManager* create(ExecutionContext*); |
| ~BatteryManager() override; |
| |
| // Returns a promise object that will be resolved with this BatteryManager. |
| ScriptPromise startRequest(ScriptState*); |
| |
| // EventTarget implementation. |
| const WTF::AtomicString& interfaceName() const override { return EventTargetNames::BatteryManager; } |
| ExecutionContext* getExecutionContext() const override { return ContextLifecycleObserver::getExecutionContext(); } |
| |
| bool charging(); |
| double chargingTime(); |
| double dischargingTime(); |
| double level(); |
| |
| DEFINE_ATTRIBUTE_EVENT_LISTENER(chargingchange); |
| DEFINE_ATTRIBUTE_EVENT_LISTENER(chargingtimechange); |
| DEFINE_ATTRIBUTE_EVENT_LISTENER(dischargingtimechange); |
| DEFINE_ATTRIBUTE_EVENT_LISTENER(levelchange); |
| |
| // Inherited from PlatformEventController. |
| void didUpdateData() override; |
| void registerWithDispatcher() override; |
| void unregisterWithDispatcher() override; |
| bool hasLastData() override; |
| |
| // ActiveDOMObject implementation. |
| void suspend() override; |
| void resume() override; |
| void stop() override; |
| |
| // ActiveScriptWrappable implementation. |
| bool hasPendingActivity() const final; |
| |
| DECLARE_VIRTUAL_TRACE(); |
| |
| private: |
| explicit BatteryManager(ExecutionContext*); |
| |
| using BatteryProperty = ScriptPromiseProperty<Member<BatteryManager>, Member<BatteryManager>, Member<DOMException>>; |
| Member<BatteryProperty> m_batteryProperty; |
| BatteryStatus m_batteryStatus; |
| }; |
| |
| } // namespace blink |
| |
| #endif // BatteryManager_h |