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

Unified Diff: third_party/WebKit/Source/platform/animation/CompositorFloatAnimationCurve.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/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;
}

Powered by Google App Engine
This is Rietveld 408576698