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

Unified Diff: third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h

Issue 2370053003: Clean up stale FIXMEs and TODOs in core/animation (Closed)
Patch Set: Enum change unchange Created 4 years, 3 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: third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
diff --git a/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h b/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
index e4f4efb95a1396a396e90fc3f8a63bab4a19e036..b570f7012dfe165d1dd5b0b7bdebd6c1c9a9cb08 100644
--- a/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
+++ b/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
@@ -96,7 +96,6 @@ private:
void interpolateValue(double fraction, std::unique_ptr<TypedInterpolationValue>& result) const final
{
- // TODO(alancutter): Remove this optimisation once Oilpan is default.
alancutter (OOO until 2018) 2016/09/27 01:14:14 InterpolationValues are no longer garbage collecte
if (!std::isnan(m_lastFraction) && (fraction < 0.5) == (m_lastFraction < 0.5))
return;
const TypedInterpolationValue* side = ((fraction < 0.5) ? m_start : m_end).get();

Powered by Google App Engine
This is Rietveld 408576698