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

Unified Diff: third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.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/CSSBorderImageLengthBoxInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp
index 05eb541af7e178e634f1963f883ef7dbdf9daefb..5c2a196ce452829dc822c53833f03e59b0665c2f 100644
--- a/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp
@@ -100,7 +100,8 @@ class UnderlyingSideNumbersChecker
public:
static std::unique_ptr<UnderlyingSideNumbersChecker> create(
const SideNumbers& underlyingSideNumbers) {
- return wrapUnique(new UnderlyingSideNumbersChecker(underlyingSideNumbers));
+ return WTF::wrapUnique(
+ new UnderlyingSideNumbersChecker(underlyingSideNumbers));
}
static SideNumbers getUnderlyingSideNumbers(
@@ -128,7 +129,7 @@ class InheritedSideNumbersChecker
static std::unique_ptr<InheritedSideNumbersChecker> create(
CSSPropertyID property,
const SideNumbers& inheritedSideNumbers) {
- return wrapUnique(
+ return WTF::wrapUnique(
new InheritedSideNumbersChecker(property, inheritedSideNumbers));
}

Powered by Google App Engine
This is Rietveld 408576698