| 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 "platform/heap/Handle.h" | 8 #include "platform/heap/Handle.h" |
| 9 #include "public/platform/modules/vr/WebVRClient.h" | 9 #include "public/platform/modules/vr/WebVRClient.h" |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 | 12 |
| 13 class VRHardwareUnitCollection; | 13 class VRHardwareUnitCollection; |
| 14 class ScriptPromiseResolver; | 14 class ScriptPromiseResolver; |
| 15 class WebVRClient; | 15 class WebVRClient; |
| 16 | 16 |
| 17 class VRGetDevicesCallback final : public WebVRGetDevicesCallback { | 17 class VRGetDevicesCallback final : public WebVRGetDevicesCallback { |
| 18 WTF_MAKE_FAST_ALLOCATED(VRGetDevicesCallback); |
| 18 public: | 19 public: |
| 19 VRGetDevicesCallback(ScriptPromiseResolver*, VRHardwareUnitCollection*); | 20 VRGetDevicesCallback(ScriptPromiseResolver*, VRHardwareUnitCollection*); |
| 20 ~VRGetDevicesCallback() override; | 21 ~VRGetDevicesCallback() override; |
| 21 | 22 |
| 22 void onSuccess(const WebVector<WebVRDevice>&) override; | 23 void onSuccess(const WebVector<WebVRDevice>&) override; |
| 23 void onError() override; | 24 void onError() override; |
| 24 | 25 |
| 25 private: | 26 private: |
| 26 Persistent<ScriptPromiseResolver> m_resolver; | 27 Persistent<ScriptPromiseResolver> m_resolver; |
| 27 Persistent<VRHardwareUnitCollection> m_hardwareUnits; | 28 Persistent<VRHardwareUnitCollection> m_hardwareUnits; |
| 28 }; | 29 }; |
| 29 | 30 |
| 30 } // namespace blink | 31 } // namespace blink |
| 31 | 32 |
| 32 #endif // VRGetDevicesCallback_h | 33 #endif // VRGetDevicesCallback_h |
| OLD | NEW |