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

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

Issue 806483002: Oilpan: trace RenderVTTCue's cue back reference. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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 | « no previous file | Source/core/rendering/RenderVTTCue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderVTTCue.h
diff --git a/Source/core/rendering/RenderVTTCue.h b/Source/core/rendering/RenderVTTCue.h
index e0159ba391df08b5db360d975c5426237f3cb1f1..136ea317c89ee22e52a72791fb884a172a27e58d 100644
--- a/Source/core/rendering/RenderVTTCue.h
+++ b/Source/core/rendering/RenderVTTCue.h
@@ -29,6 +29,7 @@
#include "core/rendering/RenderBlockFlow.h"
#include "core/rendering/RenderInline.h"
#include "platform/geometry/FloatPoint.h"
+#include "platform/heap/Handle.h"
namespace blink {
@@ -39,6 +40,7 @@ class RenderVTTCue final : public RenderBlockFlow {
public:
explicit RenderVTTCue(VTTCueBox*);
+ virtual void trace(Visitor*) override;
private:
virtual void layout() override;
@@ -55,7 +57,7 @@ private:
void repositionCueSnapToLinesSet();
void repositionCueSnapToLinesNotSet();
- VTTCue* m_cue;
+ RawPtrWillBeMember<VTTCue> m_cue;
FloatPoint m_fallbackPosition;
};
« no previous file with comments | « no previous file | Source/core/rendering/RenderVTTCue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698