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

Unified Diff: third_party/WebKit/Source/platform/animation/CompositorScrollOffsetAnimationCurve.h

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/CompositorScrollOffsetAnimationCurve.h
diff --git a/third_party/WebKit/Source/platform/animation/CompositorScrollOffsetAnimationCurve.h b/third_party/WebKit/Source/platform/animation/CompositorScrollOffsetAnimationCurve.h
index 09a8ff943e5d07b1439a5a1f8a4da14c50ab2ec5..21de75b249ee32b11e5afd2b5dd63a635aba9292 100644
--- a/third_party/WebKit/Source/platform/animation/CompositorScrollOffsetAnimationCurve.h
+++ b/third_party/WebKit/Source/platform/animation/CompositorScrollOffsetAnimationCurve.h
@@ -33,12 +33,12 @@ class PLATFORM_EXPORT CompositorScrollOffsetAnimationCurve
FloatPoint targetValue,
CompositorScrollOffsetAnimationCurve::ScrollDurationBehavior
durationBehavior) {
- return wrapUnique(new CompositorScrollOffsetAnimationCurve(
+ return WTF::wrapUnique(new CompositorScrollOffsetAnimationCurve(
targetValue, durationBehavior));
}
static std::unique_ptr<CompositorScrollOffsetAnimationCurve> create(
cc::ScrollOffsetAnimationCurve* curve) {
- return wrapUnique(new CompositorScrollOffsetAnimationCurve(curve));
+ return WTF::wrapUnique(new CompositorScrollOffsetAnimationCurve(curve));
}
~CompositorScrollOffsetAnimationCurve() override;

Powered by Google App Engine
This is Rietveld 408576698