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

Unified Diff: third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.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/CSSImageListInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
index 8930ad7fd15ec832b0f05418f8cc0c562d22faa0..6cef1a663334b3429696715eed2aceec5fe15e6c 100644
--- a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
@@ -21,7 +21,7 @@ class UnderlyingImageListChecker : public InterpolationType::ConversionChecker {
static std::unique_ptr<UnderlyingImageListChecker> create(
const InterpolationValue& underlying) {
- return wrapUnique(new UnderlyingImageListChecker(underlying));
+ return WTF::wrapUnique(new UnderlyingImageListChecker(underlying));
}
private:
@@ -73,7 +73,7 @@ class InheritedImageListChecker : public InterpolationType::ConversionChecker {
static std::unique_ptr<InheritedImageListChecker> create(
CSSPropertyID property,
const StyleImageList& inheritedImageList) {
- return wrapUnique(
+ return WTF::wrapUnique(
new InheritedImageListChecker(property, inheritedImageList));
}

Powered by Google App Engine
This is Rietveld 408576698