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

Unified Diff: Source/core/animation/interpolation/DeferredLegacyStyleInterpolationTest.cpp

Issue 306483012: Fix unused variable in DeferredLegacyStyleInterpolationTest (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/interpolation/DeferredLegacyStyleInterpolationTest.cpp
diff --git a/Source/core/animation/interpolation/DeferredLegacyStyleInterpolationTest.cpp b/Source/core/animation/interpolation/DeferredLegacyStyleInterpolationTest.cpp
index 6f437fe4e044c3f37115350e9f78c4355404c666..4c851f9648fa40453c4f06ee828a0d280d14477a 100644
--- a/Source/core/animation/interpolation/DeferredLegacyStyleInterpolationTest.cpp
+++ b/Source/core/animation/interpolation/DeferredLegacyStyleInterpolationTest.cpp
@@ -23,8 +23,8 @@ protected:
if (propertyID == CSSPropertyFloodColor)
parserMode = SVGAttributeMode;
RefPtrWillBeRawPtr<MutableStylePropertySet> dummyStyle = MutableStylePropertySet::create();
- bool ok = BisonCSSParser::parseValue(dummyStyle.get(), propertyID, string, false, parserMode, 0);
- ASSERT(ok);
+ bool parseSuccess = BisonCSSParser::parseValue(dummyStyle.get(), propertyID, string, false, parserMode, 0);
+ ASSERT_UNUSED(parseSuccess, parseSuccess);
return DeferredLegacyStyleInterpolation::interpolationRequiresStyleResolve(*dummyStyle->getPropertyCSSValue(propertyID));
}
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698