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

Unified Diff: Source/core/rendering/RenderMenuList.h

Issue 423093002: Oilpan: Prepare to move RenderObject and RenderObjectChildList to Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: dispose -> destroy Created 6 years, 4 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/core/rendering/RenderMedia.cpp ('k') | Source/core/rendering/RenderMenuList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderMenuList.h
diff --git a/Source/core/rendering/RenderMenuList.h b/Source/core/rendering/RenderMenuList.h
index ad27bd6c710e49e712113405f7ced196557b2e1c..fd8bead83cf85c370ddfc72eab6a0847bf681b6a 100644
--- a/Source/core/rendering/RenderMenuList.h
+++ b/Source/core/rendering/RenderMenuList.h
@@ -39,6 +39,7 @@ class RenderMenuList FINAL : public RenderFlexibleBox, private PopupMenuClient {
public:
RenderMenuList(Element*);
virtual ~RenderMenuList();
+ virtual void trace(Visitor*) OVERRIDE;
public:
bool popupIsVisible() const { return m_popupIsVisible; }
@@ -117,8 +118,8 @@ private:
void didUpdateActiveOption(int optionIndex);
- RenderText* m_buttonText;
- RenderBlock* m_innerBlock;
+ RawPtrWillBeMember<RenderText> m_buttonText;
+ RawPtrWillBeMember<RenderBlock> m_innerBlock;
bool m_optionsChanged;
int m_optionsWidth;
« no previous file with comments | « Source/core/rendering/RenderMedia.cpp ('k') | Source/core/rendering/RenderMenuList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698