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

Unified Diff: third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.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/CSSImageSliceInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp
index b6792a261ae995de70cdc7e0572cb1f10d3627ff..6ed147b9fe127faaa2192b9ad0ba4092274347ba 100644
--- a/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp
@@ -88,7 +88,7 @@ class UnderlyingSliceTypesChecker
public:
static std::unique_ptr<UnderlyingSliceTypesChecker> create(
const SliceTypes& underlyingTypes) {
- return wrapUnique(new UnderlyingSliceTypesChecker(underlyingTypes));
+ return WTF::wrapUnique(new UnderlyingSliceTypesChecker(underlyingTypes));
}
static SliceTypes getUnderlyingSliceTypes(
@@ -114,7 +114,8 @@ class InheritedSliceTypesChecker : public InterpolationType::ConversionChecker {
static std::unique_ptr<InheritedSliceTypesChecker> create(
CSSPropertyID property,
const SliceTypes& inheritedTypes) {
- return wrapUnique(new InheritedSliceTypesChecker(property, inheritedTypes));
+ return WTF::wrapUnique(
+ new InheritedSliceTypesChecker(property, inheritedTypes));
}
private:

Powered by Google App Engine
This is Rietveld 408576698