Index: third_party/WebKit/Source/core/css/parser/CSSParser.cpp |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp |
index a8061e5bdd66fe2c2145b7f4dc87d757fa5b7d4a..fd94660a99a184ccd4b3a9efd53d7d297c9c4dca 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp |
+++ b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp |
@@ -18,6 +18,7 @@ |
#include "core/css/parser/CSSTokenizer.h" |
#include "core/css/parser/CSSVariableParser.h" |
#include "core/layout/LayoutTheme.h" |
+#include <memory> |
namespace blink { |
@@ -114,7 +115,7 @@ ImmutableStylePropertySet* CSSParser::parseInlineStyleDeclaration(const String& |
return CSSParserImpl::parseInlineStyleDeclaration(styleString, element); |
} |
-PassOwnPtr<Vector<double>> CSSParser::parseKeyframeKeyList(const String& keyList) |
+std::unique_ptr<Vector<double>> CSSParser::parseKeyframeKeyList(const String& keyList) |
{ |
return CSSParserImpl::parseKeyframeKeyList(keyList); |
} |