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

Unified Diff: Source/modules/vr/VRHardwareUnitCollection.h

Issue 1101263003: Oilpan: have Navigator and its supplements be on the heap by default. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/vr/VRGetDevicesCallback.h ('k') | Source/modules/webmidi/NavigatorWebMIDI.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/modules/vr/VRGetDevicesCallback.h ('k') | Source/modules/webmidi/NavigatorWebMIDI.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698