Index: third_party/WebKit/Source/core/css/parser/CSSParserImpl.h |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserImpl.h b/third_party/WebKit/Source/core/css/parser/CSSParserImpl.h |
index 0bcd5153417d9830ee91dc5970255cdc3d5f1f2f..3d8fbea9ef731be7f10482cb7873dc867638ea56 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSParserImpl.h |
+++ b/third_party/WebKit/Source/core/css/parser/CSSParserImpl.h |
@@ -13,7 +13,6 @@ |
#include "platform/heap/Handle.h" |
#include "wtf/Vector.h" |
#include "wtf/text/WTFString.h" |
-#include <memory> |
namespace blink { |
@@ -67,7 +66,7 @@ public: |
static ImmutableStylePropertySet* parseCustomPropertySet(CSSParserTokenRange); |
- static std::unique_ptr<Vector<double>> parseKeyframeKeyList(const String&); |
+ static PassOwnPtr<Vector<double>> parseKeyframeKeyList(const String&); |
bool supportsDeclaration(CSSParserTokenRange&); |
@@ -109,7 +108,7 @@ private: |
void consumeDeclarationValue(CSSParserTokenRange, CSSPropertyID, bool important, StyleRule::RuleType); |
void consumeVariableValue(CSSParserTokenRange, const AtomicString& propertyName, bool important); |
- static std::unique_ptr<Vector<double>> consumeKeyframeKeyList(CSSParserTokenRange); |
+ static PassOwnPtr<Vector<double>> consumeKeyframeKeyList(CSSParserTokenRange); |
// FIXME: Can we build StylePropertySets directly? |
// FIXME: Investigate using a smaller inline buffer |