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

Unified Diff: Source/core/frame/DOMWindowProperty.h

Issue 517043003: Move Frame to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Back out non-Oilpan experiment + tidy up by adding frame() ref accessors Created 6 years, 3 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
Index: Source/core/frame/DOMWindowProperty.h
diff --git a/Source/core/frame/DOMWindowProperty.h b/Source/core/frame/DOMWindowProperty.h
index 2666f88c0fe13096ea5714ecf1f10fff7d89652a..38060a06842ecfc984f53a5cd47352721934bccc 100644
--- a/Source/core/frame/DOMWindowProperty.h
+++ b/Source/core/frame/DOMWindowProperty.h
@@ -49,10 +49,14 @@ protected:
virtual ~DOMWindowProperty();
#endif
- LocalFrame* m_frame;
- RawPtrWillBeMember<LocalDOMWindow> m_associatedDOMWindow;
+ RawPtrWillBeWeakMember<LocalFrame> m_frame;
+
+#if !ENABLE(OILPAN)
+private:
+ LocalDOMWindow* m_associatedDOMWindow;
+#endif
};
-}
+} // namespace blink
#endif

Powered by Google App Engine
This is Rietveld 408576698