Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: third_party/WebKit/Source/modules/vr/VRDisplayCollection.h

Issue 1967633002: Updated VRService to match the latest Blink WebVR interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: And we're back to removing all the array size checks Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 VRDisplayCollection_h 5 #ifndef VRDisplayCollection_h
6 #define VRDisplayCollection_h 6 #define VRDisplayCollection_h
7 7
8 #include "modules/vr/VRDisplay.h" 8 #include "modules/vr/VRDisplay.h"
9 #include "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
10 #include "public/platform/modules/vr/vr_service.mojom-blink.h" 10 #include "public/platform/modules/vr/vr_service.mojom-blink.h"
11 11
12 namespace blink { 12 namespace blink {
13 13
14 struct WebVRDevice; 14 struct WebVRDevice;
15 15
16 class VRDisplayCollection final : public GarbageCollected<VRDisplayCollection> { 16 class VRDisplayCollection final : public GarbageCollected<VRDisplayCollection> {
17 public: 17 public:
18 explicit VRDisplayCollection(NavigatorVR*); 18 explicit VRDisplayCollection(NavigatorVR*);
19 19
20 VRDisplayVector updateDisplays(mojo::WTFArray<mojom::blink::VRDeviceInfoPtr> ); 20 VRDisplayVector updateDisplays(mojo::WTFArray<mojom::blink::VRDisplayPtr>);
21 VRDisplay* getDisplayForIndex(unsigned index); 21 VRDisplay* getDisplayForIndex(unsigned index);
22 22
23 DECLARE_VIRTUAL_TRACE(); 23 DECLARE_VIRTUAL_TRACE();
24 24
25 private: 25 private:
26 Member<NavigatorVR> m_navigatorVR; 26 Member<NavigatorVR> m_navigatorVR;
27 HeapVector<Member<VRDisplay>> m_displays; 27 HeapVector<Member<VRDisplay>> m_displays;
28 }; 28 };
29 29
30 } // namespace blink 30 } // namespace blink
31 31
32 #endif // VRDisplayCollection_h 32 #endif // VRDisplayCollection_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/vr/VRDisplay.cpp ('k') | third_party/WebKit/Source/modules/vr/VRDisplayCollection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698