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

Unified Diff: sky/engine/core/animation/DefaultStyleInterpolation.h

Issue 723253004: Remove tons of OILPAN. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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: sky/engine/core/animation/DefaultStyleInterpolation.h
diff --git a/sky/engine/core/animation/DefaultStyleInterpolation.h b/sky/engine/core/animation/DefaultStyleInterpolation.h
index 775350c6365feb64e7362de612d4eb0e9f12d408..393041784a92fad23d0cc0cb5f74d909dde587be 100644
--- a/sky/engine/core/animation/DefaultStyleInterpolation.h
+++ b/sky/engine/core/animation/DefaultStyleInterpolation.h
@@ -22,13 +22,6 @@ public:
StyleBuilder::applyProperty(m_id, state, toInterpolableBool(m_cachedValue.get())->value() ? m_endCSSValue.get() : m_startCSSValue.get());
}
- virtual void trace(Visitor* visitor) override
- {
- StyleInterpolation::trace(visitor);
- visitor->trace(m_startCSSValue);
- visitor->trace(m_endCSSValue);
- }
-
private:
DefaultStyleInterpolation(CSSValue* start, CSSValue* end, CSSPropertyID id)
: StyleInterpolation(InterpolableBool::create(false), InterpolableBool::create(true), id)

Powered by Google App Engine
This is Rietveld 408576698