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

Unified Diff: Source/core/rendering/RenderFullScreen.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/RenderFrameSet.cpp ('k') | Source/core/rendering/RenderFullScreen.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderFullScreen.h
diff --git a/Source/core/rendering/RenderFullScreen.h b/Source/core/rendering/RenderFullScreen.h
index 65ca7d55c783496ff671aa9966116dbd8b1dc3a1..2317c29a30c5998f2a5c57033047c530f0eb362e 100644
--- a/Source/core/rendering/RenderFullScreen.h
+++ b/Source/core/rendering/RenderFullScreen.h
@@ -33,6 +33,7 @@ namespace blink {
class RenderFullScreen FINAL : public RenderFlexibleBox {
public:
static RenderFullScreen* createAnonymous(Document*);
+ virtual void trace(Visitor*) OVERRIDE;
virtual bool isRenderFullScreen() const OVERRIDE { return true; }
virtual const char* renderName() const OVERRIDE { return "RenderFullScreen"; }
@@ -50,7 +51,7 @@ private:
virtual void willBeDestroyed() OVERRIDE;
protected:
- RenderBlock* m_placeholder;
+ RawPtrWillBeMember<RenderBlock> m_placeholder;
};
DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderFullScreen, isRenderFullScreen());
« no previous file with comments | « Source/core/rendering/RenderFrameSet.cpp ('k') | Source/core/rendering/RenderFullScreen.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698