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 28 matching lines...) Expand all Loading... |
39 namespace blink { | 39 namespace blink { |
40 | 40 |
41 class DeviceMotionData; | 41 class DeviceMotionData; |
42 class WebDeviceMotionData; | 42 class WebDeviceMotionData; |
43 | 43 |
44 // This class listens to device motion data and notifies all registered controll
ers. | 44 // This class listens to device motion data and notifies all registered controll
ers. |
45 class DeviceMotionDispatcher final : public GarbageCollectedFinalized<DeviceMoti
onDispatcher>, public PlatformEventDispatcher, public WebDeviceMotionListener { | 45 class DeviceMotionDispatcher final : public GarbageCollectedFinalized<DeviceMoti
onDispatcher>, public PlatformEventDispatcher, public WebDeviceMotionListener { |
46 USING_GARBAGE_COLLECTED_MIXIN(DeviceMotionDispatcher); | 46 USING_GARBAGE_COLLECTED_MIXIN(DeviceMotionDispatcher); |
47 public: | 47 public: |
48 static DeviceMotionDispatcher& instance(); | 48 static DeviceMotionDispatcher& instance(); |
49 virtual ~DeviceMotionDispatcher(); | 49 ~DeviceMotionDispatcher() override; |
50 | 50 |
51 // Note that the returned object is owned by this class. | 51 // Note that the returned object is owned by this class. |
52 // FIXME: make the return value const, see crbug.com/233174. | 52 // FIXME: make the return value const, see crbug.com/233174. |
53 DeviceMotionData* latestDeviceMotionData(); | 53 DeviceMotionData* latestDeviceMotionData(); |
54 | 54 |
55 // Inherited from WebDeviceMotionListener. | 55 // Inherited from WebDeviceMotionListener. |
56 virtual void didChangeDeviceMotion(const WebDeviceMotionData&) override; | 56 void didChangeDeviceMotion(const WebDeviceMotionData&) override; |
57 | 57 |
58 DECLARE_VIRTUAL_TRACE(); | 58 DECLARE_VIRTUAL_TRACE(); |
59 | 59 |
60 private: | 60 private: |
61 DeviceMotionDispatcher(); | 61 DeviceMotionDispatcher(); |
62 | 62 |
63 // Inherited from PlatformEventDispatcher. | 63 // Inherited from PlatformEventDispatcher. |
64 virtual void startListening() override; | 64 void startListening() override; |
65 virtual void stopListening() override; | 65 void stopListening() override; |
66 | 66 |
67 Member<DeviceMotionData> m_lastDeviceMotionData; | 67 Member<DeviceMotionData> m_lastDeviceMotionData; |
68 }; | 68 }; |
69 | 69 |
70 } // namespace blink | 70 } // namespace blink |
71 | 71 |
72 #endif // DeviceMotionDispatcher_h | 72 #endif // DeviceMotionDispatcher_h |
OLD | NEW |