| 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 VRGetDevicesCallback_h | 5 #ifndef VRGetDevicesCallback_h |
| 6 #define VRGetDevicesCallback_h | 6 #define VRGetDevicesCallback_h |
| 7 | 7 |
| 8 #include "device/vr/vr_service.mojom-blink.h" | 8 #include "device/vr/vr_service.mojom-blink.h" |
| 9 #include "modules/vr/VRDisplay.h" |
| 9 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
| 10 #include "public/platform/WebCallbacks.h" | 11 #include "public/platform/WebCallbacks.h" |
| 11 #include "public/platform/WebVector.h" | |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 class VRDisplayCollection; | |
| 16 class ScriptPromiseResolver; | 15 class ScriptPromiseResolver; |
| 17 | 16 |
| 18 // Success and failure callbacks for getDisplays. | 17 // Success and failure callbacks for getDisplays. |
| 19 using WebVRGetDisplaysCallback = WebCallbacks<mojo::WTFArray<device::blink::VRDi
splayPtr>, void>; | 18 using WebVRGetDisplaysCallback = WebCallbacks<VRDisplayVector, void>; |
| 20 class VRGetDevicesCallback final : public WebVRGetDisplaysCallback { | 19 class VRGetDevicesCallback final : public WebVRGetDisplaysCallback { |
| 21 USING_FAST_MALLOC(VRGetDevicesCallback); | 20 USING_FAST_MALLOC(VRGetDevicesCallback); |
| 22 public: | 21 public: |
| 23 VRGetDevicesCallback(ScriptPromiseResolver*, VRDisplayCollection*); | 22 VRGetDevicesCallback(ScriptPromiseResolver*); |
| 24 ~VRGetDevicesCallback() override; | 23 ~VRGetDevicesCallback() override; |
| 25 | 24 |
| 26 void onSuccess(mojo::WTFArray<device::blink::VRDisplayPtr>) override; | 25 void onSuccess(VRDisplayVector) override; |
| 27 void onError() override; | 26 void onError() override; |
| 28 | 27 |
| 29 private: | 28 private: |
| 30 Persistent<ScriptPromiseResolver> m_resolver; | 29 Persistent<ScriptPromiseResolver> m_resolver; |
| 31 Persistent<VRDisplayCollection> m_displays; | |
| 32 }; | 30 }; |
| 33 | 31 |
| 34 } // namespace blink | 32 } // namespace blink |
| 35 | 33 |
| 36 #endif // VRGetDevicesCallback_h | 34 #endif // VRGetDevicesCallback_h |
| OLD | NEW |