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

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

Issue 143823004: Implement DeviceLight (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Layout test fix Created 6 years, 8 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef DeviceLightController_h
6 #define DeviceLightController_h
7
8 #include "core/dom/DocumentSupplementable.h"
9 #include "core/events/Event.h"
10 #include "core/frame/DOMWindowLifecycleObserver.h"
11 #include "core/frame/DeviceSensorEventController.h"
12
13 namespace WebCore {
14
15 class DOMWindow;
16
17 class DeviceLightController FINAL : public DeviceSensorEventController, public D ocumentSupplement, public DOMWindowLifecycleObserver {
18
19 public:
20 virtual ~DeviceLightController();
21
22 static const char* supplementName();
23 static DeviceLightController& from(Document&);
24
25 void didChangeDeviceLight(double);
26
27 private:
28 explicit DeviceLightController(Document&);
29 virtual void registerWithDispatcher() 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
37 virtual bool hasLastData() OVERRIDE;
38 virtual PassRefPtrWillBeRawPtr<Event> getLastEvent() OVERRIDE;
39 virtual bool isNullEvent(Event*) OVERRIDE;
40 };
41
42 } // namespace WebCore
43
44 #endif // DeviceLightController_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698