OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef VRDisplayCollection_h |
| 6 #define VRDisplayCollection_h |
| 7 |
| 8 #include "modules/vr/VRDisplay.h" |
| 9 #include "platform/heap/Handle.h" |
| 10 #include "public/platform/WebVector.h" |
| 11 |
| 12 namespace blink { |
| 13 |
| 14 struct WebVRDevice; |
| 15 |
| 16 class VRDisplayCollection final : public GarbageCollected<VRDisplayCollection> { |
| 17 public: |
| 18 explicit VRDisplayCollection(NavigatorVR*); |
| 19 |
| 20 VRDisplayVector updateDisplays(const WebVector<WebVRDevice>&); |
| 21 VRDisplay* getDisplayForIndex(unsigned index); |
| 22 |
| 23 DECLARE_VIRTUAL_TRACE(); |
| 24 |
| 25 private: |
| 26 Member<NavigatorVR> m_navigatorVR; |
| 27 HeapVector<Member<VRDisplay>> m_displays; |
| 28 }; |
| 29 |
| 30 } // namespace blink |
| 31 |
| 32 #endif // VRDisplayCollection_h |
OLD | NEW |