Index: content/renderer/device_sensors/device_sensor_event_pump.h |
diff --git a/content/renderer/device_sensors/device_sensor_event_pump.h b/content/renderer/device_sensors/device_sensor_event_pump.h |
index e109c113ed24c0a7b185183f98153d3bdb7131b3..43e0f64dca49f79e6df0e170aa6a02a992baa962 100644 |
--- a/content/renderer/device_sensors/device_sensor_event_pump.h |
+++ b/content/renderer/device_sensors/device_sensor_event_pump.h |
@@ -22,7 +22,7 @@ class CONTENT_EXPORT DeviceSensorEventPump |
base::Time::kMicrosecondsPerSecond / kDefaultPumpFrequencyHz; |
// PlatformEventObserver |
- virtual void Start(blink::WebPlatformEventListener* listener) OVERRIDE { |
+ virtual void Start(blink::WebPlatformEventListener* listener) override { |
DVLOG(2) << "requested start"; |
if (state_ != STOPPED) |
@@ -34,7 +34,7 @@ class CONTENT_EXPORT DeviceSensorEventPump |
state_ = PENDING_START; |
} |
- virtual void Stop() OVERRIDE { |
+ virtual void Stop() override { |
DVLOG(2) << "stop"; |
if (state_ == STOPPED) |