| OLD | NEW |
| 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 "platform/heap/Handle.h" | 8 #include "platform/heap/Handle.h" |
| 9 #include "platform/wtf/Noncopyable.h" |
| 10 #include "platform/wtf/PassRefPtr.h" |
| 11 #include "platform/wtf/RefPtr.h" |
| 9 #include "public/platform/modules/screen_orientation/WebLockOrientationCallback.
h" | 12 #include "public/platform/modules/screen_orientation/WebLockOrientationCallback.
h" |
| 10 #include "public/platform/modules/screen_orientation/WebScreenOrientationType.h" | 13 #include "public/platform/modules/screen_orientation/WebScreenOrientationType.h" |
| 11 #include "wtf/Noncopyable.h" | |
| 12 #include "wtf/PassRefPtr.h" | |
| 13 #include "wtf/RefPtr.h" | |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 | 16 |
| 17 class ScriptPromiseResolver; | 17 class ScriptPromiseResolver; |
| 18 | 18 |
| 19 // LockOrientationCallback is an implementation of WebLockOrientationCallback | 19 // LockOrientationCallback is an implementation of WebLockOrientationCallback |
| 20 // that will resolve the underlying promise depending on the result passed to | 20 // that will resolve the underlying promise depending on the result passed to |
| 21 // the callback. | 21 // the callback. |
| 22 class LockOrientationCallback final : public WebLockOrientationCallback { | 22 class LockOrientationCallback final : public WebLockOrientationCallback { |
| 23 USING_FAST_MALLOC(LockOrientationCallback); | 23 USING_FAST_MALLOC(LockOrientationCallback); |
| 24 WTF_MAKE_NONCOPYABLE(LockOrientationCallback); | 24 WTF_MAKE_NONCOPYABLE(LockOrientationCallback); |
| 25 | 25 |
| 26 public: | 26 public: |
| 27 explicit LockOrientationCallback(ScriptPromiseResolver*); | 27 explicit LockOrientationCallback(ScriptPromiseResolver*); |
| 28 ~LockOrientationCallback() override; | 28 ~LockOrientationCallback() override; |
| 29 | 29 |
| 30 void OnSuccess() override; | 30 void OnSuccess() override; |
| 31 void OnError(WebLockOrientationError) override; | 31 void OnError(WebLockOrientationError) override; |
| 32 | 32 |
| 33 private: | 33 private: |
| 34 Persistent<ScriptPromiseResolver> resolver_; | 34 Persistent<ScriptPromiseResolver> resolver_; |
| 35 }; | 35 }; |
| 36 | 36 |
| 37 } // namespace blink | 37 } // namespace blink |
| 38 | 38 |
| 39 #endif // LockOrientationCallback_h | 39 #endif // LockOrientationCallback_h |
| OLD | NEW |