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

Unified Diff: third_party/WebKit/Source/core/animation/PathInterpolationFunctions.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/PathInterpolationFunctions.cpp
diff --git a/third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp b/third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp
index 3e6c84fc5a399b8f1f122164d6ed8a5cf9b72d4a..3553ca8c3078437f55be93001ee09f57e6420c07 100644
--- a/third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp
+++ b/third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp
@@ -155,7 +155,7 @@ PairwiseInterpolationValue PathInterpolationFunctions::maybeMergeSingles(
return PairwiseInterpolationValue(std::move(start.interpolableValue),
std::move(end.interpolableValue),
- end.nonInterpolableValue.release());
+ std::move(end.nonInterpolableValue));
}
void PathInterpolationFunctions::composite(

Powered by Google App Engine
This is Rietveld 408576698