| Index: Source/modules/device_orientation/DeviceMotionDispatcher.h
|
| diff --git a/Source/modules/device_orientation/DeviceMotionDispatcher.h b/Source/modules/device_orientation/DeviceMotionDispatcher.h
|
| index e6885fd5767fd35e9dbd6d550ee32839902bb3b3..be76022413ba0f1b9340d97efd43d9a54bc4e22d 100644
|
| --- a/Source/modules/device_orientation/DeviceMotionDispatcher.h
|
| +++ b/Source/modules/device_orientation/DeviceMotionDispatcher.h
|
| @@ -46,14 +46,14 @@ class DeviceMotionDispatcher final : public GarbageCollectedFinalized<DeviceMoti
|
| USING_GARBAGE_COLLECTED_MIXIN(DeviceMotionDispatcher);
|
| public:
|
| static DeviceMotionDispatcher& instance();
|
| - virtual ~DeviceMotionDispatcher();
|
| + ~DeviceMotionDispatcher() override;
|
|
|
| // Note that the returned object is owned by this class.
|
| // FIXME: make the return value const, see crbug.com/233174.
|
| DeviceMotionData* latestDeviceMotionData();
|
|
|
| // Inherited from WebDeviceMotionListener.
|
| - virtual void didChangeDeviceMotion(const WebDeviceMotionData&) override;
|
| + void didChangeDeviceMotion(const WebDeviceMotionData&) override;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -61,8 +61,8 @@ private:
|
| DeviceMotionDispatcher();
|
|
|
| // Inherited from PlatformEventDispatcher.
|
| - virtual void startListening() override;
|
| - virtual void stopListening() override;
|
| + void startListening() override;
|
| + void stopListening() override;
|
|
|
| Member<DeviceMotionData> m_lastDeviceMotionData;
|
| };
|
|
|