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

Side by Side Diff: Source/modules/device_light/DeviceLightController.h

Issue 315023006: Revert of Generalize and refactor DeviceSensorEvent* architecture to support multi-event type targets. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
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 DeviceLightController_h 5 #ifndef DeviceLightController_h
6 #define DeviceLightController_h 6 #define DeviceLightController_h
7 7
8 #include "core/dom/DocumentSupplementable.h" 8 #include "core/dom/DocumentSupplementable.h"
9 #include "core/frame/DeviceSingleWindowEventController.h" 9 #include "core/frame/DOMWindowLifecycleObserver.h"
10 #include "core/frame/DeviceSensorEventController.h"
11 #include "modules/EventModules.h"
10 12
11 namespace WebCore { 13 namespace WebCore {
12 14
13 class DOMWindow; 15 class DOMWindow;
14 class Event;
15 16
16 class DeviceLightController FINAL : public NoBaseWillBeGarbageCollectedFinalized <DeviceLightController>, public DeviceSingleWindowEventController, public Docume ntSupplement { 17 class DeviceLightController FINAL : public NoBaseWillBeGarbageCollectedFinalized <DeviceLightController>, public DeviceSensorEventController, public DocumentSupp lement, public DOMWindowLifecycleObserver {
17 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DeviceLightController); 18 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DeviceLightController);
18 public: 19 public:
19 virtual ~DeviceLightController(); 20 virtual ~DeviceLightController();
20 21
21 static const char* supplementName(); 22 static const char* supplementName();
22 static DeviceLightController& from(Document&); 23 static DeviceLightController& from(Document&);
23 24
25 void didChangeDeviceLight(double);
26
24 private: 27 private:
25 explicit DeviceLightController(Document&); 28 explicit DeviceLightController(Document&);
26
27 // Inherited from DeviceEventControllerBase.
28 virtual void registerWithDispatcher() OVERRIDE; 29 virtual void registerWithDispatcher() OVERRIDE;
29 virtual void unregisterWithDispatcher() OVERRIDE; 30 virtual void unregisterWithDispatcher() OVERRIDE;
31
32 // Inherited from DOMWindowLifecycleObserver.
33 virtual void didAddEventListener(DOMWindow*, const AtomicString&) OVERRIDE;
34 virtual void didRemoveEventListener(DOMWindow*, const AtomicString&) OVERRID E;
35 virtual void didRemoveAllEventListeners(DOMWindow*) OVERRIDE;
36
30 virtual bool hasLastData() OVERRIDE; 37 virtual bool hasLastData() OVERRIDE;
38 virtual PassRefPtrWillBeRawPtr<Event> getLastEvent() OVERRIDE;
39 virtual bool isNullEvent(Event*) OVERRIDE;
40 virtual Document* document() OVERRIDE;
31 41
32 // Inherited from DeviceSingleWindowEventController. 42 Document& m_document;
33 virtual PassRefPtrWillBeRawPtr<Event> lastEvent() const OVERRIDE;
34 virtual const AtomicString& eventTypeName() const OVERRIDE;
35 virtual bool isNullEvent(Event*) const OVERRIDE;
36 }; 43 };
37 44
38 } // namespace WebCore 45 } // namespace WebCore
39 46
40 #endif // DeviceLightController_h 47 #endif // DeviceLightController_h
OLDNEW
« no previous file with comments | « Source/modules/battery/BatteryManager.cpp ('k') | Source/modules/device_light/DeviceLightController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698