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