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

Unified Diff: third_party/WebKit/Source/core/animation/TypedInterpolationValue.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/TypedInterpolationValue.h
diff --git a/third_party/WebKit/Source/core/animation/TypedInterpolationValue.h b/third_party/WebKit/Source/core/animation/TypedInterpolationValue.h
index ab074cd7b0ba84d1119623bc1c57465e69ac9e2c..c5c318b9cf14546fcb23d7c03076adb414245ee4 100644
--- a/third_party/WebKit/Source/core/animation/TypedInterpolationValue.h
+++ b/third_party/WebKit/Source/core/animation/TypedInterpolationValue.h
@@ -28,7 +28,7 @@ class TypedInterpolationValue {
std::unique_ptr<TypedInterpolationValue> clone() const {
InterpolationValue copy = m_value.clone();
return create(m_type, std::move(copy.interpolableValue),
- copy.nonInterpolableValue.release());
+ std::move(copy.nonInterpolableValue));
}
const InterpolationType& type() const { return m_type; }

Powered by Google App Engine
This is Rietveld 408576698