| 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" | 10 #include "core/events/EventTarget.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 virtual void suspend() OVERRIDE; | 42 virtual void suspend() OVERRIDE; |
| 43 virtual void resume() OVERRIDE; | 43 virtual void resume() OVERRIDE; |
| 44 virtual void stop() OVERRIDE; | 44 virtual void stop() OVERRIDE; |
| 45 | 45 |
| 46 // DeviceSensorEventController | 46 // DeviceSensorEventController |
| 47 virtual void registerWithDispatcher() OVERRIDE; | 47 virtual void registerWithDispatcher() OVERRIDE; |
| 48 virtual void unregisterWithDispatcher() OVERRIDE; | 48 virtual void unregisterWithDispatcher() OVERRIDE; |
| 49 virtual bool hasLastData() OVERRIDE; | 49 virtual bool hasLastData() OVERRIDE; |
| 50 virtual PassRefPtrWillBeRawPtr<Event> getLastEvent() OVERRIDE; | 50 virtual PassRefPtrWillBeRawPtr<Event> getLastEvent() OVERRIDE; |
| 51 virtual bool isNullEvent(Event*) OVERRIDE; | 51 virtual bool isNullEvent(Event*) OVERRIDE; |
| 52 virtual Document* document() OVERRIDE; |
| 52 | 53 |
| 53 void trace(Visitor*) { } | 54 void trace(Visitor*) { } |
| 54 | 55 |
| 55 private: | 56 private: |
| 56 explicit BatteryManager(ExecutionContext*); | 57 explicit BatteryManager(ExecutionContext*); |
| 57 }; | 58 }; |
| 58 | 59 |
| 59 } | 60 } |
| 60 | 61 |
| 61 #endif // BatteryManager_h | 62 #endif // BatteryManager_h |
| 62 | 63 |
| OLD | NEW |