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