| // Copyright 2015 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef VRGetDevicesCallback_h |
| #define VRGetDevicesCallback_h |
| |
| #include "platform/heap/Handle.h" |
| #include "public/platform/modules/vr/WebVRClient.h" |
| |
| namespace blink { |
| |
| class VRHardwareUnitCollection; |
| class ScriptPromiseResolver; |
| class WebVRClient; |
| |
| class VRGetDevicesCallback final : public WebVRGetDevicesCallback { |
| USING_FAST_MALLOC(VRGetDevicesCallback); |
| public: |
| VRGetDevicesCallback(ScriptPromiseResolver*, VRHardwareUnitCollection*); |
| ~VRGetDevicesCallback() override; |
| |
| void onSuccess(const WebVector<WebVRDevice>&) override; |
| void onError() override; |
| |
| private: |
| Persistent<ScriptPromiseResolver> m_resolver; |
| Persistent<VRHardwareUnitCollection> m_hardwareUnits; |
| }; |
| |
| } // namespace blink |
| |
| #endif // VRGetDevicesCallback_h |