Index: third_party/WebKit/Source/platform/animation/CompositorFloatAnimationCurve.cpp |
diff --git a/third_party/WebKit/Source/platform/animation/CompositorFloatAnimationCurve.cpp b/third_party/WebKit/Source/platform/animation/CompositorFloatAnimationCurve.cpp |
index 1e789c9d03b8f57ca6cb5a4fcf925c3757e0de8e..572acffac48c5dd0af50c8da9c5e720b094bb9da 100644 |
--- a/third_party/WebKit/Source/platform/animation/CompositorFloatAnimationCurve.cpp |
+++ b/third_party/WebKit/Source/platform/animation/CompositorFloatAnimationCurve.cpp |
@@ -24,15 +24,16 @@ CompositorFloatAnimationCurve::~CompositorFloatAnimationCurve() {} |
std::unique_ptr<CompositorFloatAnimationCurve> |
CompositorFloatAnimationCurve::createForTesting( |
std::unique_ptr<cc::KeyframedFloatAnimationCurve> curve) { |
- return wrapUnique(new CompositorFloatAnimationCurve(std::move(curve))); |
+ return WTF::wrapUnique(new CompositorFloatAnimationCurve(std::move(curve))); |
} |
CompositorFloatAnimationCurve::Keyframes |
CompositorFloatAnimationCurve::keyframesForTesting() const { |
Keyframes keyframes; |
- for (const auto& ccKeyframe : m_curve->keyframes_for_testing()) |
+ for (const auto& ccKeyframe : m_curve->keyframes_for_testing()) { |
keyframes.append( |
- wrapUnique(new CompositorFloatKeyframe(ccKeyframe->Clone()))); |
+ WTF::wrapUnique(new CompositorFloatKeyframe(ccKeyframe->Clone()))); |
+ } |
return keyframes; |
} |