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

Unified Diff: Source/core/rendering/RenderTextFragment.cpp

Issue 659953004: Oilpan: fix build after r183913. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git/+/master
Patch Set: Created 6 years, 2 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/dom/PseudoElement.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderTextFragment.cpp
diff --git a/Source/core/rendering/RenderTextFragment.cpp b/Source/core/rendering/RenderTextFragment.cpp
index d09e24a42a45a63cba1ddb28b7c2ad434a0d5864..bd640c89a748e7a4e90af8562ddf5966f95310c1 100644
--- a/Source/core/rendering/RenderTextFragment.cpp
+++ b/Source/core/rendering/RenderTextFragment.cpp
@@ -53,9 +53,11 @@ RenderTextFragment::RenderTextFragment(Node* node, StringImpl* str)
RenderTextFragment::~RenderTextFragment()
{
+#if !ENABLE(OILPAN)
esprehn 2014/10/17 22:02:05 This is not correct so skip in oilpan, you're leav
sof 2014/10/18 04:50:52 FirstPseudoElement traces its "remaining text rend
if (m_isRemainingTextRenderer && m_firstLetterPseudoElement)
m_firstLetterPseudoElement->setRemainingTextRenderer(nullptr);
m_firstLetterPseudoElement = nullptr;
+#endif
}
void RenderTextFragment::trace(Visitor* visitor)
« no previous file with comments | « Source/core/dom/PseudoElement.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698