Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(502)

Unified Diff: content/renderer/device_sensors/device_light_event_pump.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/device_sensors/device_light_event_pump.h
diff --git a/content/renderer/device_sensors/device_light_event_pump.h b/content/renderer/device_sensors/device_light_event_pump.h
index 6acd7291ce8ec77d2f49b84264568c7216a616f3..46766ec7d27d35aa7b583d275eb70466b256187d 100644
--- a/content/renderer/device_sensors/device_light_event_pump.h
+++ b/content/renderer/device_sensors/device_light_event_pump.h
@@ -30,17 +30,17 @@ class CONTENT_EXPORT DeviceLightEventPump
bool SetListener(blink::WebDeviceLightListener* listener);
// PlatformEventObserver implementation.
- virtual bool OnControlMessageReceived(const IPC::Message& message) OVERRIDE;
- virtual void SendFakeDataForTesting(void* data) OVERRIDE;
+ virtual bool OnControlMessageReceived(const IPC::Message& message) override;
+ virtual void SendFakeDataForTesting(void* data) override;
protected:
// Methods overriden from base class DeviceSensorEventPump
- virtual void FireEvent() OVERRIDE;
- virtual bool InitializeReader(base::SharedMemoryHandle handle) OVERRIDE;
+ virtual void FireEvent() override;
+ virtual bool InitializeReader(base::SharedMemoryHandle handle) override;
// PlatformEventObserver implementation.
- virtual void SendStartMessage() OVERRIDE;
- virtual void SendStopMessage() OVERRIDE;
+ virtual void SendStartMessage() override;
+ virtual void SendStopMessage() override;
private:
bool ShouldFireEvent(double data) const;
« no previous file with comments | « content/renderer/child_frame_compositing_helper.h ('k') | content/renderer/device_sensors/device_light_event_pump_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698