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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef LockOrientationCallback_h 5 #ifndef LockOrientationCallback_h
6 #define LockOrientationCallback_h 6 #define LockOrientationCallback_h
7 7
8 #include "public/platform/WebLockOrientationCallback.h" 8 #include "public/platform/WebLockOrientationCallback.h"
9 #include "public/platform/WebScreenOrientationType.h" 9 #include "public/platform/WebScreenOrientationType.h"
10 #include "wtf/Noncopyable.h" 10 #include "wtf/Noncopyable.h"
11 #include "wtf/PassRefPtr.h" 11 #include "wtf/PassRefPtr.h"
12 #include "wtf/RefPtr.h" 12 #include "wtf/RefPtr.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class ScriptPromiseResolver; 16 class ScriptPromiseResolver;
17 17
18 // LockOrientationCallback is an implementation of WebLockOrientationCallback 18 // LockOrientationCallback is an implementation of WebLockOrientationCallback
19 // that will resolve the underlying promise depending on the result passed to 19 // that will resolve the underlying promise depending on the result passed to
20 // the callback. 20 // the callback.
21 class LockOrientationCallback FINAL : public WebLockOrientationCallback { 21 class LockOrientationCallback final : public WebLockOrientationCallback {
22 WTF_MAKE_NONCOPYABLE(LockOrientationCallback); 22 WTF_MAKE_NONCOPYABLE(LockOrientationCallback);
23 public: 23 public:
24 explicit LockOrientationCallback(PassRefPtr<ScriptPromiseResolver>); 24 explicit LockOrientationCallback(PassRefPtr<ScriptPromiseResolver>);
25 virtual ~LockOrientationCallback(); 25 virtual ~LockOrientationCallback();
26 26
27 virtual void onSuccess() OVERRIDE; 27 virtual void onSuccess() override;
28 virtual void onError(WebLockOrientationError) OVERRIDE; 28 virtual void onError(WebLockOrientationError) override;
29 29
30 private: 30 private:
31 RefPtr<ScriptPromiseResolver> m_resolver; 31 RefPtr<ScriptPromiseResolver> m_resolver;
32 }; 32 };
33 33
34 } // namespace blink 34 } // namespace blink
35 35
36 #endif // LockOrientationCallback_h 36 #endif // LockOrientationCallback_h
OLDNEW
« 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