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

Unified Diff: third_party/WebKit/Source/core/animation/PairwiseInterpolationValue.h

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/PairwiseInterpolationValue.h
diff --git a/third_party/WebKit/Source/core/animation/PairwiseInterpolationValue.h b/third_party/WebKit/Source/core/animation/PairwiseInterpolationValue.h
index 3249351d0016d6d39727d9ac505bb13071ecdedb..f62b17b7e17b2ea973621d5c17769c62482477b8 100644
--- a/third_party/WebKit/Source/core/animation/PairwiseInterpolationValue.h
+++ b/third_party/WebKit/Source/core/animation/PairwiseInterpolationValue.h
@@ -30,7 +30,7 @@ struct PairwiseInterpolationValue {
PairwiseInterpolationValue(PairwiseInterpolationValue&& other)
: startInterpolableValue(std::move(other.startInterpolableValue)),
endInterpolableValue(std::move(other.endInterpolableValue)),
- nonInterpolableValue(other.nonInterpolableValue.release()) {}
+ nonInterpolableValue(std::move(other.nonInterpolableValue)) {}
operator bool() const { return startInterpolableValue.get(); }

Powered by Google App Engine
This is Rietveld 408576698