| 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 "core/dom/ContextLifecycleObserver.h" | 8 #include "core/dom/ContextLifecycleObserver.h" |
| 9 #include "core/dom/Document.h" | 9 #include "core/dom/Document.h" |
| 10 #include "core/events/EventTarget.h" | |
| 11 #include "core/frame/DeviceSensorEventController.h" | 10 #include "core/frame/DeviceSensorEventController.h" |
| 11 #include "modules/EventTargetModules.h" |
| 12 #include "platform/heap/Handle.h" | 12 #include "platform/heap/Handle.h" |
| 13 | 13 |
| 14 namespace WebCore { | 14 namespace WebCore { |
| 15 | 15 |
| 16 class Navigator; | 16 class Navigator; |
| 17 | 17 |
| 18 class BatteryManager FINAL : public RefCountedWillBeRefCountedGarbageCollected<B
atteryManager>, public ActiveDOMObject, public DeviceSensorEventController, publ
ic EventTargetWithInlineData { | 18 class BatteryManager FINAL : public RefCountedWillBeRefCountedGarbageCollected<B
atteryManager>, public ActiveDOMObject, public DeviceSensorEventController, publ
ic EventTargetWithInlineData { |
| 19 DEFINE_EVENT_TARGET_REFCOUNTING(RefCountedWillBeRefCountedGarbageCollected<B
atteryManager>); | 19 DEFINE_EVENT_TARGET_REFCOUNTING(RefCountedWillBeRefCountedGarbageCollected<B
atteryManager>); |
| 20 public: | 20 public: |
| 21 virtual ~BatteryManager(); | 21 virtual ~BatteryManager(); |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 void trace(Visitor*) { } | 54 void trace(Visitor*) { } |
| 55 | 55 |
| 56 private: | 56 private: |
| 57 explicit BatteryManager(ExecutionContext*); | 57 explicit BatteryManager(ExecutionContext*); |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 } | 60 } |
| 61 | 61 |
| 62 #endif // BatteryManager_h | 62 #endif // BatteryManager_h |
| 63 | 63 |
| OLD | NEW |