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 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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 62528e892a7489e9ec60be480f170e6b056202d9..b984362f0ad9311e6f8896e5302d0566f5b4e872 100644
--- a/Source/modules/screen_orientation/LockOrientationCallback.h
+++ b/Source/modules/screen_orientation/LockOrientationCallback.h
@@ -23,10 +23,10 @@ class LockOrientationCallback final : public WebLockOrientationCallback {
WTF_MAKE_NONCOPYABLE(LockOrientationCallback);
public:
explicit LockOrientationCallback(PassRefPtrWillBeRawPtr<ScriptPromiseResolver>);
- virtual ~LockOrientationCallback();
+ ~LockOrientationCallback() override;
- virtual void onSuccess() override;
- virtual void onError(WebLockOrientationError) override;
+ void onSuccess() override;
+ void onError(WebLockOrientationError) override;
private:
RefPtrWillBePersistent<ScriptPromiseResolver> m_resolver;
« no previous file with comments | « Source/modules/quota/StorageQuotaCallbacksImpl.h ('k') | Source/modules/screen_orientation/ScreenOrientation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698