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

Unified Diff: content/renderer/device_sensors/device_orientation_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_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 9f97e91e343e6b393b667a4d1668d31d2f761f51..43e566d26489954570454a3e6b03d9e154a08a8f 100644
--- a/content/renderer/device_sensors/device_orientation_event_pump.h
+++ b/content/renderer/device_sensors/device_orientation_event_pump.h
@@ -30,16 +30,16 @@ class CONTENT_EXPORT DeviceOrientationEventPump
virtual ~DeviceOrientationEventPump();
// PlatformEventObserver.
- 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:
- virtual void FireEvent() OVERRIDE;
- virtual bool InitializeReader(base::SharedMemoryHandle handle) OVERRIDE;
+ virtual void FireEvent() override;
+ virtual bool InitializeReader(base::SharedMemoryHandle handle) override;
// PlatformEventObserver.
- virtual void SendStartMessage() OVERRIDE;
- virtual void SendStopMessage() OVERRIDE;
+ virtual void SendStartMessage() override;
+ virtual void SendStopMessage() override;
bool ShouldFireEvent(const blink::WebDeviceOrientationData& data) const;

Powered by Google App Engine
This is Rietveld 408576698