Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Side by Side Diff: third_party/WebKit/Source/modules/battery/BatteryManager.h

Issue 1538803002: Migrates battery_status from content/renderer/ to WebKit/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Synced. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/ScriptPromise.h" 8 #include "bindings/core/v8/ScriptPromise.h"
9 #include "bindings/core/v8/ScriptPromiseProperty.h" 9 #include "bindings/core/v8/ScriptPromiseProperty.h"
10 #include "core/dom/ActiveDOMObject.h" 10 #include "core/dom/ActiveDOMObject.h"
11 #include "core/dom/ContextLifecycleObserver.h" 11 #include "core/dom/ContextLifecycleObserver.h"
12 #include "core/frame/PlatformEventController.h" 12 #include "core/frame/PlatformEventController.h"
13 #include "modules/EventTargetModules.h" 13 #include "modules/EventTargetModules.h"
14 #include "platform/battery/battery_status.h"
14 #include "platform/heap/Handle.h" 15 #include "platform/heap/Handle.h"
15 16
16 namespace blink { 17 namespace blink {
17 18
18 class BatteryStatus;
19
20 class BatteryManager final : public RefCountedGarbageCollectedEventTargetWithInl ineData<BatteryManager>, public ActiveDOMObject, public PlatformEventController { 19 class BatteryManager final : public RefCountedGarbageCollectedEventTargetWithInl ineData<BatteryManager>, public ActiveDOMObject, public PlatformEventController {
21 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(BatteryManager); 20 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(BatteryManager);
22 DEFINE_WRAPPERTYPEINFO(); 21 DEFINE_WRAPPERTYPEINFO();
23 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(BatteryManager); 22 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(BatteryManager);
24 public: 23 public:
25 static BatteryManager* create(ExecutionContext*); 24 static BatteryManager* create(ExecutionContext*);
26 ~BatteryManager() override; 25 ~BatteryManager() override;
27 26
28 // Returns a promise object that will be resolved with this BatteryManager. 27 // Returns a promise object that will be resolved with this BatteryManager.
29 ScriptPromise startRequest(ScriptState*); 28 ScriptPromise startRequest(ScriptState*);
(...skipping 24 matching lines...) Expand all
54 void stop() override; 53 void stop() override;
55 bool hasPendingActivity() const override; 54 bool hasPendingActivity() const override;
56 55
57 DECLARE_VIRTUAL_TRACE(); 56 DECLARE_VIRTUAL_TRACE();
58 57
59 private: 58 private:
60 explicit BatteryManager(ExecutionContext*); 59 explicit BatteryManager(ExecutionContext*);
61 60
62 using BatteryProperty = ScriptPromiseProperty<Member<BatteryManager>, Member <BatteryManager>, Member<DOMException>>; 61 using BatteryProperty = ScriptPromiseProperty<Member<BatteryManager>, Member <BatteryManager>, Member<DOMException>>;
63 Member<BatteryProperty> m_batteryProperty; 62 Member<BatteryProperty> m_batteryProperty;
64 Member<BatteryStatus> m_batteryStatus; 63 BatteryStatus m_batteryStatus;
65 }; 64 };
66 65
67 } // namespace blink 66 } // namespace blink
68 67
69 #endif // BatteryManager_h 68 #endif // BatteryManager_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698