| 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 BatteryManager_h | 5 #ifndef BatteryManager_h |
| 6 #define BatteryManager_h | 6 #define BatteryManager_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ActiveScriptWrappable.h" | 8 #include "bindings/core/v8/ActiveScriptWrappable.h" |
| 9 #include "bindings/core/v8/ScriptPromise.h" | 9 #include "bindings/core/v8/ScriptPromise.h" |
| 10 #include "bindings/core/v8/ScriptPromiseProperty.h" | 10 #include "bindings/core/v8/ScriptPromiseProperty.h" |
| 11 #include "core/dom/ActiveDOMObject.h" | 11 #include "core/dom/ActiveDOMObject.h" |
| 12 #include "core/dom/ContextLifecycleObserver.h" | 12 #include "core/dom/ContextLifecycleObserver.h" |
| 13 #include "core/frame/PlatformEventController.h" | 13 #include "core/frame/PlatformEventController.h" |
| 14 #include "modules/EventTargetModules.h" | 14 #include "modules/EventTargetModules.h" |
| 15 #include "modules/battery/battery_status.h" | 15 #include "modules/battery/battery_status.h" |
| 16 #include "platform/heap/Handle.h" | 16 #include "platform/heap/Handle.h" |
| 17 | 17 |
| 18 namespace blink { | 18 namespace blink { |
| 19 | 19 |
| 20 class BatteryManager final : public RefCountedGarbageCollectedEventTargetWithInl
ineData<BatteryManager>, public ActiveScriptWrappable, public ActiveDOMObject, p
ublic PlatformEventController { | 20 class BatteryManager final : public RefCountedGarbageCollectedEventTargetWithInl
ineData<BatteryManager>, public ActiveScriptWrappable, public ActiveDOMObject, p
ublic PlatformEventController { |
| 21 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(BatteryManager); | 21 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(BatteryManager); |
| 22 DEFINE_WRAPPERTYPEINFO(); | 22 DEFINE_WRAPPERTYPEINFO(); |
| 23 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(BatteryManager); | 23 USING_GARBAGE_COLLECTED_MIXIN(BatteryManager); |
| 24 public: | 24 public: |
| 25 static BatteryManager* create(ExecutionContext*); | 25 static BatteryManager* create(ExecutionContext*); |
| 26 ~BatteryManager() override; | 26 ~BatteryManager() override; |
| 27 | 27 |
| 28 // Returns a promise object that will be resolved with this BatteryManager. | 28 // Returns a promise object that will be resolved with this BatteryManager. |
| 29 ScriptPromise startRequest(ScriptState*); | 29 ScriptPromise startRequest(ScriptState*); |
| 30 | 30 |
| 31 // EventTarget implementation. | 31 // EventTarget implementation. |
| 32 const WTF::AtomicString& interfaceName() const override { return EventTarget
Names::BatteryManager; } | 32 const WTF::AtomicString& interfaceName() const override { return EventTarget
Names::BatteryManager; } |
| 33 ExecutionContext* getExecutionContext() const override { return ContextLifec
ycleObserver::getExecutionContext(); } | 33 ExecutionContext* getExecutionContext() const override { return ContextLifec
ycleObserver::getExecutionContext(); } |
| (...skipping 28 matching lines...) Expand all Loading... |
| 62 explicit BatteryManager(ExecutionContext*); | 62 explicit BatteryManager(ExecutionContext*); |
| 63 | 63 |
| 64 using BatteryProperty = ScriptPromiseProperty<Member<BatteryManager>, Member
<BatteryManager>, Member<DOMException>>; | 64 using BatteryProperty = ScriptPromiseProperty<Member<BatteryManager>, Member
<BatteryManager>, Member<DOMException>>; |
| 65 Member<BatteryProperty> m_batteryProperty; | 65 Member<BatteryProperty> m_batteryProperty; |
| 66 BatteryStatus m_batteryStatus; | 66 BatteryStatus m_batteryStatus; |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 } // namespace blink | 69 } // namespace blink |
| 70 | 70 |
| 71 #endif // BatteryManager_h | 71 #endif // BatteryManager_h |
| OLD | NEW |