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

Unified Diff: content/renderer/device_sensors/device_sensor_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_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)
« no previous file with comments | « content/renderer/device_sensors/device_orientation_event_pump_unittest.cc ('k') | content/renderer/devtools/devtools_agent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698