| Index: Source/modules/vr/NavigatorVRDevice.h
|
| diff --git a/Source/modules/vr/NavigatorVRDevice.h b/Source/modules/vr/NavigatorVRDevice.h
|
| index 62391cb04c059cc721b811707146c7ba2a37558c..425e44a96158b76415bcd1d0bb2cc2506c0e0ce1 100644
|
| --- a/Source/modules/vr/NavigatorVRDevice.h
|
| +++ b/Source/modules/vr/NavigatorVRDevice.h
|
| @@ -22,8 +22,8 @@ class Navigator;
|
| class VRController;
|
| class VRHardwareUnitCollection;
|
|
|
| -class MODULES_EXPORT NavigatorVRDevice final : public NoBaseWillBeGarbageCollectedFinalized<NavigatorVRDevice>, public WillBeHeapSupplement<Navigator>, public DOMWindowProperty {
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorVRDevice);
|
| +class MODULES_EXPORT NavigatorVRDevice final : public GarbageCollectedFinalized<NavigatorVRDevice>, public HeapSupplement<Navigator>, DOMWindowProperty {
|
| + USING_GARBAGE_COLLECTED_MIXIN(NavigatorVRDevice);
|
| WTF_MAKE_NONCOPYABLE(NavigatorVRDevice);
|
| public:
|
| static NavigatorVRDevice* from(Document&);
|
| @@ -45,7 +45,7 @@ private:
|
|
|
| static const char* supplementName();
|
|
|
| - RefPtrWillBeMember<VRHardwareUnitCollection> m_hardwareUnits;
|
| + Member<VRHardwareUnitCollection> m_hardwareUnits;
|
| };
|
|
|
| } // namespace blink
|
|
|