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

Unified Diff: Source/core/animation/SampledEffect.cpp

Issue 1120003002: [Oilpan] Migrate most classes under core/animations to Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Resize expect size of Persistent Created 5 years, 7 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/animation/SampledEffect.cpp
diff --git a/Source/core/animation/SampledEffect.cpp b/Source/core/animation/SampledEffect.cpp
index cc91740bdf10a4cb89cd8ce1886c80b707ded1c5..170047d9802800011f77a60ca4eab1d9e1bcc13d 100644
--- a/Source/core/animation/SampledEffect.cpp
+++ b/Source/core/animation/SampledEffect.cpp
@@ -11,7 +11,7 @@
namespace blink {
-SampledEffect::SampledEffect(KeyframeEffect* effect, PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation>>> interpolations)
+SampledEffect::SampledEffect(KeyframeEffect* effect, HeapVector<Member<Interpolation>>* interpolations)
: m_effect(effect)
, m_animation(effect->animation())
, m_interpolations(interpolations)
@@ -32,9 +32,7 @@ DEFINE_TRACE(SampledEffect)
{
visitor->trace(m_effect);
visitor->trace(m_animation);
-#if ENABLE(OILPAN)
visitor->trace(m_interpolations);
-#endif
}
void SampledEffect::applySVGUpdate(SVGElement& targetElement)

Powered by Google App Engine
This is Rietveld 408576698