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

Unified Diff: third_party/WebKit/Source/platform/exported/WebActiveGestureAnimation.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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/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() {}
« no previous file with comments | « third_party/WebKit/Source/platform/blob/BlobData.cpp ('k') | third_party/WebKit/Source/platform/exported/WebCredential.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698