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

Unified Diff: third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.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/CSSImageListInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
index 30cd2a8eb59cd74d2dd38efe638150e9363ec1cf..b4c1dbcef6fd05e1c2f0be1901afe6911b510c76 100644
--- a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
@@ -134,7 +134,7 @@ InterpolationValue CSSImageListInterpolationType::maybeConvertValue(
if (!component)
return nullptr;
interpolableList->set(i, std::move(component.interpolableValue));
- nonInterpolableValues[i] = component.nonInterpolableValue.release();
+ nonInterpolableValues[i] = std::move(component.nonInterpolableValue);
}
return InterpolationValue(
std::move(interpolableList),

Powered by Google App Engine
This is Rietveld 408576698