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

Unified Diff: third_party/WebKit/Source/core/animation/LegacyStyleInterpolation.cpp

Issue 2649103007: Make PropertyHandle instances const references where possible (Closed)
Patch Set: Created 3 years, 11 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/LegacyStyleInterpolation.cpp
diff --git a/third_party/WebKit/Source/core/animation/LegacyStyleInterpolation.cpp b/third_party/WebKit/Source/core/animation/LegacyStyleInterpolation.cpp
index 452696ca2285e4d3fe63bff301374039176153bd..7280279da18b08bc691fb7fe4dfe0a8e5fa1eca7 100644
--- a/third_party/WebKit/Source/core/animation/LegacyStyleInterpolation.cpp
+++ b/third_party/WebKit/Source/core/animation/LegacyStyleInterpolation.cpp
@@ -41,7 +41,7 @@ LegacyStyleInterpolation::LegacyStyleInterpolation(
: Interpolation(),
m_start(std::move(start)),
m_end(std::move(end)),
- m_id(id),
+ m_property(id),
m_cachedFraction(0),
m_cachedIteration(0),
m_cachedValue(m_start ? m_start->clone() : nullptr) {

Powered by Google App Engine
This is Rietveld 408576698