| 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:
|
|
|