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

Unified Diff: third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.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/core/animation/CSSBasicShapeInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
index 79cee23b5771e0aeb8fc7428657263f16069869b..f8ac49d97441077f23d4063975b85f3c514a30f2 100644
--- a/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
@@ -22,7 +22,7 @@ class UnderlyingCompatibilityChecker
public:
static std::unique_ptr<UnderlyingCompatibilityChecker> create(
PassRefPtr<NonInterpolableValue> underlyingNonInterpolableValue) {
- return wrapUnique(new UnderlyingCompatibilityChecker(
+ return WTF::wrapUnique(new UnderlyingCompatibilityChecker(
std::move(underlyingNonInterpolableValue)));
}
@@ -45,7 +45,7 @@ class InheritedShapeChecker : public InterpolationType::ConversionChecker {
static std::unique_ptr<InheritedShapeChecker> create(
CSSPropertyID property,
PassRefPtr<BasicShape> inheritedShape) {
- return wrapUnique(
+ return WTF::wrapUnique(
new InheritedShapeChecker(property, std::move(inheritedShape)));
}

Powered by Google App Engine
This is Rietveld 408576698