Index: Source/modules/screen_orientation/LockOrientationCallback.h |
diff --git a/Source/modules/screen_orientation/LockOrientationCallback.h b/Source/modules/screen_orientation/LockOrientationCallback.h |
index 8947f7944978ce22f50caf2461ba3a67c7a0d020..ba2abe0be4bd0c93b66d33d43e31cb5059092c09 100644 |
--- a/Source/modules/screen_orientation/LockOrientationCallback.h |
+++ b/Source/modules/screen_orientation/LockOrientationCallback.h |
@@ -18,14 +18,14 @@ class ScriptPromiseResolver; |
// LockOrientationCallback is an implementation of WebLockOrientationCallback |
// that will resolve the underlying promise depending on the result passed to |
// the callback. |
-class LockOrientationCallback FINAL : public WebLockOrientationCallback { |
+class LockOrientationCallback final : public WebLockOrientationCallback { |
WTF_MAKE_NONCOPYABLE(LockOrientationCallback); |
public: |
explicit LockOrientationCallback(PassRefPtr<ScriptPromiseResolver>); |
virtual ~LockOrientationCallback(); |
- virtual void onSuccess() OVERRIDE; |
- virtual void onError(WebLockOrientationError) OVERRIDE; |
+ virtual void onSuccess() override; |
+ virtual void onError(WebLockOrientationError) override; |
private: |
RefPtr<ScriptPromiseResolver> m_resolver; |