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

Unified Diff: Source/modules/device_orientation/DeviceOrientationData.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/DeviceOrientationData.h
diff --git a/Source/modules/device_orientation/DeviceOrientationData.h b/Source/modules/device_orientation/DeviceOrientationData.h
index 690943f4ca7cf9a82c765958bae2131be13fde21..ef59d9098f90b76bceda6eb21d4a67f349eb8051 100644
--- a/Source/modules/device_orientation/DeviceOrientationData.h
+++ b/Source/modules/device_orientation/DeviceOrientationData.h
@@ -32,7 +32,7 @@ namespace blink {
class WebDeviceOrientationData;
-class DeviceOrientationData FINAL : public GarbageCollected<DeviceOrientationData> {
+class DeviceOrientationData final : public GarbageCollected<DeviceOrientationData> {
public:
static DeviceOrientationData* create();
static DeviceOrientationData* create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute = false, bool absolute = false);

Powered by Google App Engine
This is Rietveld 408576698