Index: third_party/WebKit/Source/core/css/parser/CSSParser.h |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParser.h b/third_party/WebKit/Source/core/css/parser/CSSParser.h |
index 341a2d585e0cd6090e6b309497432afe13312e3b..706dd56220e6e95c4395d9f96953cadff8c40faa 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSParser.h |
+++ b/third_party/WebKit/Source/core/css/parser/CSSParser.h |
@@ -10,6 +10,7 @@ |
#include "core/css/CSSValue.h" |
#include "core/css/parser/CSSParserMode.h" |
#include "platform/graphics/Color.h" |
+#include <memory> |
namespace blink { |
@@ -47,7 +48,7 @@ public: |
static ImmutableStylePropertySet* parseInlineStyleDeclaration(const String&, Element*); |
- static PassOwnPtr<Vector<double>> parseKeyframeKeyList(const String&); |
+ static std::unique_ptr<Vector<double>> parseKeyframeKeyList(const String&); |
static StyleRuleKeyframe* parseKeyframeRule(const CSSParserContext&, const String&); |
static bool parseSupportsCondition(const String&); |