| Index: Source/modules/vr/NavigatorVRDevice.h
 | 
| diff --git a/Source/modules/vr/NavigatorVRDevice.h b/Source/modules/vr/NavigatorVRDevice.h
 | 
| index 62391cb04c059cc721b811707146c7ba2a37558c..68e12e7583beec945d48d984ccce611ff912e6ed 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>, public 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
 | 
| 
 |