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

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

Issue 1069313002: Animation: FilterStyleInterpolation for animating filter (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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/ListStyleInterpolation.h
diff --git a/Source/core/animation/ListStyleInterpolation.h b/Source/core/animation/ListStyleInterpolation.h
index a31086ee542e2a88086d0a1847bb9e150072f8b2..afe7b40838c8155e979499f47cf6264b15c8becc 100644
--- a/Source/core/animation/ListStyleInterpolation.h
+++ b/Source/core/animation/ListStyleInterpolation.h
@@ -61,7 +61,7 @@ private:
if (nonInterpolableData)
nonInterpolableData->reserveCapacity(listValue.length());
OwnPtrWillBeRawPtr<InterpolableList> result = InterpolableList::create(listValue.length());
- typename InterpolationType::NonInterpolableType elementData = true;
+ typename InterpolationType::NonInterpolableType elementData = typename InterpolationType::NonInterpolableType();
for (size_t i = 0; i < listValue.length(); i++) {
result->set(i, InterpolationType::toInterpolableValue(*listValue.item(i), elementData));
if (nonInterpolableData)

Powered by Google App Engine
This is Rietveld 408576698