Index: third_party/WebKit/Source/platform/exported/WebActiveGestureAnimation.cpp |
diff --git a/third_party/WebKit/Source/platform/exported/WebActiveGestureAnimation.cpp b/third_party/WebKit/Source/platform/exported/WebActiveGestureAnimation.cpp |
index 4b0d58f34ba1a71e61d39543ecd0f1f1d0c960b1..601f331ada060b65bfa660a5140ff8ac4461a919 100644 |
--- a/third_party/WebKit/Source/platform/exported/WebActiveGestureAnimation.cpp |
+++ b/third_party/WebKit/Source/platform/exported/WebActiveGestureAnimation.cpp |
@@ -36,7 +36,7 @@ std::unique_ptr<WebActiveGestureAnimation> |
WebActiveGestureAnimation::createAtAnimationStart( |
std::unique_ptr<WebGestureCurve> curve, |
WebGestureCurveTarget* target) { |
- return wrapUnique( |
+ return WTF::wrapUnique( |
new WebActiveGestureAnimation(std::move(curve), target, 0, true)); |
} |
@@ -45,8 +45,8 @@ WebActiveGestureAnimation::createWithTimeOffset( |
std::unique_ptr<WebGestureCurve> curve, |
WebGestureCurveTarget* target, |
double startTime) { |
- return wrapUnique(new WebActiveGestureAnimation(std::move(curve), target, |
- startTime, false)); |
+ return WTF::wrapUnique(new WebActiveGestureAnimation(std::move(curve), target, |
+ startTime, false)); |
} |
WebActiveGestureAnimation::~WebActiveGestureAnimation() {} |