OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 15 matching lines...) Expand all Loading... |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef DeviceOrientationDispatcher_h | 31 #ifndef DeviceOrientationDispatcher_h |
32 #define DeviceOrientationDispatcher_h | 32 #define DeviceOrientationDispatcher_h |
33 | 33 |
34 #include "core/frame/PlatformEventDispatcher.h" | 34 #include "core/frame/PlatformEventDispatcher.h" |
35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
| 36 #include "public/platform/WebPlatformEventType.h" |
36 #include "public/platform/modules/device_orientation/WebDeviceOrientationListene
r.h" | 37 #include "public/platform/modules/device_orientation/WebDeviceOrientationListene
r.h" |
37 #include "wtf/RefPtr.h" | 38 #include "wtf/RefPtr.h" |
38 | 39 |
39 namespace blink { | 40 namespace blink { |
40 | 41 |
41 class DeviceOrientationData; | 42 class DeviceOrientationData; |
42 class WebDeviceOrientationData; | 43 class WebDeviceOrientationData; |
43 | 44 |
44 // This class listens to device orientation data and notifies all registered con
trollers. | 45 // This class listens to device orientation data and notifies all registered con
trollers. |
45 class DeviceOrientationDispatcher final : public GarbageCollectedFinalized<Devic
eOrientationDispatcher>, public PlatformEventDispatcher, public WebDeviceOrienta
tionListener { | 46 class DeviceOrientationDispatcher final : public GarbageCollectedFinalized<Devic
eOrientationDispatcher>, public PlatformEventDispatcher, public WebDeviceOrienta
tionListener { |
46 USING_GARBAGE_COLLECTED_MIXIN(DeviceOrientationDispatcher); | 47 USING_GARBAGE_COLLECTED_MIXIN(DeviceOrientationDispatcher); |
47 public: | 48 public: |
48 static DeviceOrientationDispatcher& instance(); | 49 static DeviceOrientationDispatcher& instance(bool absolute); |
49 ~DeviceOrientationDispatcher() override; | 50 ~DeviceOrientationDispatcher() override; |
50 | 51 |
51 // Note that the returned object is owned by this class. | 52 // Note that the returned object is owned by this class. |
52 // FIXME: make the return value const, see crbug.com/233174. | 53 // FIXME: make the return value const, see crbug.com/233174. |
53 DeviceOrientationData* latestDeviceOrientationData(); | 54 DeviceOrientationData* latestDeviceOrientationData(); |
54 | 55 |
55 // Inherited from WebDeviceOrientationListener. | 56 // Inherited from WebDeviceOrientationListener. |
56 void didChangeDeviceOrientation(const WebDeviceOrientationData&) override; | 57 void didChangeDeviceOrientation(const WebDeviceOrientationData&) override; |
57 | 58 |
58 DECLARE_VIRTUAL_TRACE(); | 59 DECLARE_VIRTUAL_TRACE(); |
59 | 60 |
60 private: | 61 private: |
61 DeviceOrientationDispatcher(); | 62 explicit DeviceOrientationDispatcher(bool absolute); |
62 | 63 |
63 // Inherited from PlatformEventDispatcher. | 64 // Inherited from PlatformEventDispatcher. |
64 void startListening() override; | 65 void startListening() override; |
65 void stopListening() override; | 66 void stopListening() override; |
66 | 67 |
| 68 WebPlatformEventType getWebPlatformEventType() const; |
| 69 |
| 70 const bool m_absolute; |
67 Member<DeviceOrientationData> m_lastDeviceOrientationData; | 71 Member<DeviceOrientationData> m_lastDeviceOrientationData; |
68 }; | 72 }; |
69 | 73 |
70 } // namespace blink | 74 } // namespace blink |
71 | 75 |
72 #endif // DeviceOrientationDispatcher_h | 76 #endif // DeviceOrientationDispatcher_h |
OLD | NEW |