| Index: third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp b/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp
|
| index 8140d02235f04667b22f7652a4f904c7be29cfac..3545f861b4b307d3069669d3bcdfbedbe6bd6006 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp
|
| @@ -948,7 +948,7 @@ void CSSParserImpl::consumeDeclarationValue(CSSParserTokenRange range,
|
|
|
| std::unique_ptr<Vector<double>> CSSParserImpl::consumeKeyframeKeyList(
|
| CSSParserTokenRange range) {
|
| - std::unique_ptr<Vector<double>> result = wrapUnique(new Vector<double>);
|
| + std::unique_ptr<Vector<double>> result = WTF::wrapUnique(new Vector<double>);
|
| while (true) {
|
| range.consumeWhitespace();
|
| const CSSParserToken& token = range.consumeIncludingWhitespace();
|
|
|