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

Unified Diff: Source/modules/screen_orientation/LockOrientationCallback.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/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;
« no previous file with comments | « Source/modules/quota/WorkerNavigatorStorageQuota.h ('k') | Source/modules/screen_orientation/ScreenOrientation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698