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

Unified Diff: third_party/WebKit/Source/core/animation/PrimitiveInterpolation.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/core/animation/PrimitiveInterpolation.h
diff --git a/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h b/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
index 75ff547d9ccdaf7cd6a8f577271a4daee6c6c8ad..50a08ddbfd0e504da79804f03f0fe41774f6186f 100644
--- a/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
+++ b/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
@@ -48,7 +48,7 @@ class PairwisePrimitiveInterpolation : public PrimitiveInterpolation {
std::unique_ptr<InterpolableValue> start,
std::unique_ptr<InterpolableValue> end,
PassRefPtr<NonInterpolableValue> nonInterpolableValue) {
- return wrapUnique(new PairwisePrimitiveInterpolation(
+ return WTF::wrapUnique(new PairwisePrimitiveInterpolation(
type, std::move(start), std::move(end),
std::move(nonInterpolableValue)));
}
@@ -105,7 +105,7 @@ class FlipPrimitiveInterpolation : public PrimitiveInterpolation {
static std::unique_ptr<FlipPrimitiveInterpolation> create(
std::unique_ptr<TypedInterpolationValue> start,
std::unique_ptr<TypedInterpolationValue> end) {
- return wrapUnique(
+ return WTF::wrapUnique(
new FlipPrimitiveInterpolation(std::move(start), std::move(end)));
}

Powered by Google App Engine
This is Rietveld 408576698