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

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

Issue 297493004: Move modules-dependent eventtarget code out of core. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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 "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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698