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

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

Issue 2622043003: Replaced RefPtr::release with std::move in Source/core. (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/SVGTransformListInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/SVGTransformListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGTransformListInterpolationType.cpp
index 6bcea84287c0812ffb6c42fa44f8ce7c3fa8c7c2..b907b63a9efac3242802f46e3b27b259c636c8bc 100644
--- a/third_party/WebKit/Source/core/animation/SVGTransformListInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/SVGTransformListInterpolationType.cpp
@@ -298,7 +298,7 @@ PairwiseInterpolationValue SVGTransformListInterpolationType::maybeMergeSingles(
return PairwiseInterpolationValue(std::move(start.interpolableValue),
std::move(end.interpolableValue),
- end.nonInterpolableValue.release());
+ std::move(end.nonInterpolableValue));
}
void SVGTransformListInterpolationType::composite(

Powered by Google App Engine
This is Rietveld 408576698