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

Unified Diff: Source/modules/vr/NavigatorVRDevice.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/serviceworkers/NavigatorServiceWorker.cpp ('k') | Source/modules/vr/NavigatorVRDevice.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/modules/serviceworkers/NavigatorServiceWorker.cpp ('k') | Source/modules/vr/NavigatorVRDevice.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698