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

Unified Diff: Source/core/animation/InterpolationEffect.h

Issue 758533004: Oilpan: enable eager tracing of common animation objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@sof-trace-eager-final
Patch Set: rebased 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 | « Source/core/animation/Interpolation.h ('k') | Source/core/animation/Keyframe.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/InterpolationEffect.h
diff --git a/Source/core/animation/InterpolationEffect.h b/Source/core/animation/InterpolationEffect.h
index 4146a0ca0da09ae4d983bd224753637b11627b7a..4ca554caf318d537b61d1546b369b0b6f720aa11 100644
--- a/Source/core/animation/InterpolationEffect.h
+++ b/Source/core/animation/InterpolationEffect.h
@@ -28,11 +28,6 @@ public:
void trace(Visitor*);
-private:
- InterpolationEffect()
- {
- }
-
class InterpolationRecord : public NoBaseWillBeGarbageCollectedFinalized<InterpolationRecord> {
public:
RefPtrWillBeMember<Interpolation> m_interpolation;
@@ -61,9 +56,17 @@ private:
}
};
+private:
+ InterpolationEffect()
+ {
+ }
+
WillBeHeapVector<OwnPtrWillBeMember<InterpolationRecord> > m_interpolations;
};
-}
+WILL_BE_EAGERLY_TRACED(InterpolationEffect);
+WILL_BE_EAGERLY_TRACED(InterpolationEffect::InterpolationRecord);
+
+} // namespace blink
-#endif
+#endif // InterpolationEffect_h
« no previous file with comments | « Source/core/animation/Interpolation.h ('k') | Source/core/animation/Keyframe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698