| 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 #include "wtf/PassRefPtr.h" | |
| 11 #include "wtf/RefPtr.h" | |
| 12 | 10 |
| 13 namespace blink { | 11 namespace blink { |
| 14 | 12 |
| 15 class VRHardwareUnitCollection; | 13 class VRHardwareUnitCollection; |
| 16 class ScriptPromiseResolver; | 14 class ScriptPromiseResolver; |
| 17 class WebVRClient; | 15 class WebVRClient; |
| 18 | 16 |
| 19 class VRGetDevicesCallback final : public WebVRGetDevicesCallback { | 17 class VRGetDevicesCallback final : public WebVRGetDevicesCallback { |
| 20 public: | 18 public: |
| 21 VRGetDevicesCallback(PassRefPtrWillBeRawPtr<ScriptPromiseResolver>, VRHardwa
reUnitCollection*); | 19 VRGetDevicesCallback(ScriptPromiseResolver*, VRHardwareUnitCollection*); |
| 22 ~VRGetDevicesCallback() override; | 20 ~VRGetDevicesCallback() override; |
| 23 | 21 |
| 24 void onSuccess(WebVector<WebVRDevice>*) override; | 22 void onSuccess(WebVector<WebVRDevice>*) override; |
| 25 void onError() override; | 23 void onError() override; |
| 26 | 24 |
| 27 private: | 25 private: |
| 28 RefPtrWillBePersistent<ScriptPromiseResolver> m_resolver; | 26 Persistent<ScriptPromiseResolver> m_resolver; |
| 29 Persistent<VRHardwareUnitCollection> m_hardwareUnits; | 27 Persistent<VRHardwareUnitCollection> m_hardwareUnits; |
| 30 }; | 28 }; |
| 31 | 29 |
| 32 } // namespace blink | 30 } // namespace blink |
| 33 | 31 |
| 34 #endif // VRGetDevicesCallback_h | 32 #endif // VRGetDevicesCallback_h |
| OLD | NEW |