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

Unified Diff: third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.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/CSSPaintInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp
index 602ccdc9da09d6ed6909d648b79204c495f039be..a8adb8cf0cbf9a703ff934b3e7ff8a1b3ec61827 100644
--- a/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp
@@ -34,10 +34,10 @@ class InheritedPaintChecker : public InterpolationType::ConversionChecker {
static std::unique_ptr<InheritedPaintChecker> create(
CSSPropertyID property,
const StyleColor& color) {
- return wrapUnique(new InheritedPaintChecker(property, color));
+ return WTF::wrapUnique(new InheritedPaintChecker(property, color));
}
static std::unique_ptr<InheritedPaintChecker> create(CSSPropertyID property) {
- return wrapUnique(new InheritedPaintChecker(property));
+ return WTF::wrapUnique(new InheritedPaintChecker(property));
}
private:

Powered by Google App Engine
This is Rietveld 408576698