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

Unified Diff: content/browser/device_sensors/sensor_manager_android_unittest.cc

Issue 633503002: Replacing the OVERRIDE with override and FINAL with final in content/browser/device_sensors (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
« no previous file with comments | « content/browser/device_sensors/device_orientation_message_filter.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/device_sensors/sensor_manager_android_unittest.cc
diff --git a/content/browser/device_sensors/sensor_manager_android_unittest.cc b/content/browser/device_sensors/sensor_manager_android_unittest.cc
index 096f3ecc4ae322a93cc1a0d96a70ddb2e097ef73..b5f0c5fb9335ca58b7739315fe4663da77d91d44 100644
--- a/content/browser/device_sensors/sensor_manager_android_unittest.cc
+++ b/content/browser/device_sensors/sensor_manager_android_unittest.cc
@@ -19,7 +19,7 @@ class FakeSensorManagerAndroid : public SensorManagerAndroid {
FakeSensorManagerAndroid() { }
virtual ~FakeSensorManagerAndroid() { }
- virtual int GetNumberActiveDeviceMotionSensors() OVERRIDE {
+ virtual int GetNumberActiveDeviceMotionSensors() override {
return number_active_sensors_;
}
@@ -28,11 +28,11 @@ class FakeSensorManagerAndroid : public SensorManagerAndroid {
}
protected:
- virtual bool Start(EventType event_type) OVERRIDE {
+ virtual bool Start(EventType event_type) override {
return true;
}
- virtual void Stop(EventType event_type) OVERRIDE {
+ virtual void Stop(EventType event_type) override {
}
private:
« no previous file with comments | « content/browser/device_sensors/device_orientation_message_filter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698