| Index: content/renderer/device_sensors/device_orientation_event_pump.h
|
| diff --git a/content/renderer/device_sensors/device_orientation_event_pump.h b/content/renderer/device_sensors/device_orientation_event_pump.h
|
| index 43e566d26489954570454a3e6b03d9e154a08a8f..d9564e17cd048ae4eaa1b819f1763a8c3f9d4cff 100644
|
| --- a/content/renderer/device_sensors/device_orientation_event_pump.h
|
| +++ b/content/renderer/device_sensors/device_orientation_event_pump.h
|
| @@ -27,19 +27,19 @@ class CONTENT_EXPORT DeviceOrientationEventPump
|
| static const double kOrientationThreshold;
|
|
|
| explicit DeviceOrientationEventPump(RenderThread* thread);
|
| - virtual ~DeviceOrientationEventPump();
|
| + ~DeviceOrientationEventPump() override;
|
|
|
| // PlatformEventObserver.
|
| - virtual bool OnControlMessageReceived(const IPC::Message& message) override;
|
| - virtual void SendFakeDataForTesting(void* data) override;
|
| + bool OnControlMessageReceived(const IPC::Message& message) override;
|
| + void SendFakeDataForTesting(void* data) override;
|
|
|
| protected:
|
| - virtual void FireEvent() override;
|
| - virtual bool InitializeReader(base::SharedMemoryHandle handle) override;
|
| + void FireEvent() override;
|
| + bool InitializeReader(base::SharedMemoryHandle handle) override;
|
|
|
| // PlatformEventObserver.
|
| - virtual void SendStartMessage() override;
|
| - virtual void SendStopMessage() override;
|
| + void SendStartMessage() override;
|
| + void SendStopMessage() override;
|
|
|
| bool ShouldFireEvent(const blink::WebDeviceOrientationData& data) const;
|
|
|
|
|