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

Unified Diff: third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.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/CSSFontSizeInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp
index 7fbd7541696888337e10bf2d25f0203704bd0de9..2b3f3f404f1b3cd6280b4a7206a98b2641dccd4b 100644
--- a/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp
@@ -19,7 +19,7 @@ namespace {
class IsMonospaceChecker : public InterpolationType::ConversionChecker {
public:
static std::unique_ptr<IsMonospaceChecker> create(bool isMonospace) {
- return wrapUnique(new IsMonospaceChecker(isMonospace));
+ return WTF::wrapUnique(new IsMonospaceChecker(isMonospace));
}
private:
@@ -38,7 +38,7 @@ class InheritedFontSizeChecker : public InterpolationType::ConversionChecker {
public:
static std::unique_ptr<InheritedFontSizeChecker> create(
const FontDescription::Size& inheritedFontSize) {
- return wrapUnique(new InheritedFontSizeChecker(inheritedFontSize));
+ return WTF::wrapUnique(new InheritedFontSizeChecker(inheritedFontSize));
}
private:

Powered by Google App Engine
This is Rietveld 408576698