| Index: Source/modules/vr/VRHardwareUnitCollection.h
|
| diff --git a/Source/modules/vr/VRHardwareUnitCollection.h b/Source/modules/vr/VRHardwareUnitCollection.h
|
| index b174489867be075d1606923190ba8fd6629d562f..76fed5340681fb646d41ad7aed287784b46c00ba 100644
|
| --- a/Source/modules/vr/VRHardwareUnitCollection.h
|
| +++ b/Source/modules/vr/VRHardwareUnitCollection.h
|
| @@ -14,7 +14,7 @@ namespace blink {
|
|
|
| class WebVRDevice;
|
|
|
| -class VRHardwareUnitCollection final : public RefCountedWillBeGarbageCollected<VRHardwareUnitCollection> {
|
| +class VRHardwareUnitCollection final : public GarbageCollected<VRHardwareUnitCollection> {
|
| public:
|
| explicit VRHardwareUnitCollection(VRController*);
|
|
|
| @@ -24,8 +24,8 @@ public:
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - PersistentWillBeMember<VRController> m_controller;
|
| - PersistentHeapVectorWillBeHeapVector<Member<VRHardwareUnit>> m_hardwareUnits;
|
| + Member<VRController> m_controller;
|
| + HeapVector<Member<VRHardwareUnit>> m_hardwareUnits;
|
| };
|
|
|
| } // namespace blink
|
|
|