OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef PresentationAvailabilityCallback_h |
| 6 #define PresentationAvailabilityCallback_h |
| 7 |
| 8 #include "platform/heap/Handle.h" |
| 9 #include "public/platform/WebCallbacks.h" |
| 10 #include "wtf/Noncopyable.h" |
| 11 |
| 12 namespace blink { |
| 13 |
| 14 class ScriptPromiseResolver; |
| 15 |
| 16 using WebPresentationAvailabilityCallbacks = WebCallbacks<bool, void>; |
| 17 |
| 18 // PresentationAvailabilityCallback is an implementation of |
| 19 // WebPresentationAvailabilityCallbacks that will resolve the underlying promise |
| 20 // depending on the result passed to the callback. |
| 21 class PresentationAvailabilityCallback final |
| 22 : public WebPresentationAvailabilityCallbacks { |
| 23 WTF_MAKE_NONCOPYABLE(PresentationAvailabilityCallback); |
| 24 public: |
| 25 explicit PresentationAvailabilityCallback(PassRefPtrWillBeRawPtr<ScriptPromi
seResolver>); |
| 26 virtual ~PresentationAvailabilityCallback() = default; |
| 27 |
| 28 void onSuccess(bool*) override; |
| 29 void onError() override; |
| 30 |
| 31 private: |
| 32 RefPtrWillBePersistent<ScriptPromiseResolver> m_resolver; |
| 33 }; |
| 34 |
| 35 } // namespace blink |
| 36 |
| 37 #endif // PresentationAvailabilityCallback_h |
OLD | NEW |