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

Unified Diff: Source/modules/device_orientation/DeviceMotionData.h

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.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: Source/modules/device_orientation/DeviceMotionData.h
diff --git a/Source/modules/device_orientation/DeviceMotionData.h b/Source/modules/device_orientation/DeviceMotionData.h
index ded64c1ad5b20122c0dd332daa8b9cf00974de1b..fb3bde486af14db6f75ee1200c88a307eb2b5798 100644
--- a/Source/modules/device_orientation/DeviceMotionData.h
+++ b/Source/modules/device_orientation/DeviceMotionData.h
@@ -32,10 +32,10 @@ namespace blink {
class WebDeviceMotionData;
-class DeviceMotionData FINAL : public GarbageCollected<DeviceMotionData> {
+class DeviceMotionData final : public GarbageCollected<DeviceMotionData> {
public:
- class Acceleration FINAL : public GarbageCollected<DeviceMotionData::Acceleration> {
+ class Acceleration final : public GarbageCollected<DeviceMotionData::Acceleration> {
public:
static Acceleration* create(bool canProvideX, double x, bool canProvideY, double y, bool canProvideZ, double z);
void trace(Visitor*) { }
@@ -60,7 +60,7 @@ public:
bool m_canProvideZ;
};
- class RotationRate FINAL : public GarbageCollected<DeviceMotionData::RotationRate> {
+ class RotationRate final : public GarbageCollected<DeviceMotionData::RotationRate> {
public:
static RotationRate* create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma);
void trace(Visitor*) { }
« no previous file with comments | « Source/modules/device_orientation/DeviceMotionController.h ('k') | Source/modules/device_orientation/DeviceMotionEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698