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

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

Issue 2651533005: Make StyleResolverState argument a pointer in maybeConvertValue() (Closed)
Patch Set: Rebased Created 3 years, 10 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/CSSLengthInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
index 37311c6aacf52d319aca662c4677371bbda0e629..81b999702a28e4eb44ba0638e9d88326d085ced3 100644
--- a/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
@@ -85,7 +85,7 @@ InterpolationValue CSSLengthInterpolationType::maybeConvertInherit(
InterpolationValue CSSLengthInterpolationType::maybeConvertValue(
const CSSValue& value,
- const StyleResolverState&,
+ const StyleResolverState*,
ConversionCheckers& conversionCheckers) const {
if (value.isIdentifierValue()) {
CSSValueID valueID = toCSSIdentifierValue(value).getValueID();

Powered by Google App Engine
This is Rietveld 408576698