| Index: third_party/WebKit/Source/core/css/CSSKeyframesRule.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSKeyframesRule.cpp b/third_party/WebKit/Source/core/css/CSSKeyframesRule.cpp
|
| index f81050542d1123d4c880a229b882de7fa81bba98..de4d0c270fb88897b1540c38931f9ff8f1b3e940 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSKeyframesRule.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSKeyframesRule.cpp
|
| @@ -31,6 +31,7 @@
|
| #include "core/css/parser/CSSParser.h"
|
| #include "core/frame/UseCounter.h"
|
| #include "wtf/text/StringBuilder.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -74,7 +75,7 @@ void StyleRuleKeyframes::wrapperRemoveKeyframe(unsigned index)
|
|
|
| int StyleRuleKeyframes::findKeyframeIndex(const String& key) const
|
| {
|
| - OwnPtr<Vector<double>> keys = CSSParser::parseKeyframeKeyList(key);
|
| + std::unique_ptr<Vector<double>> keys = CSSParser::parseKeyframeKeyList(key);
|
| if (!keys)
|
| return -1;
|
| for (size_t i = m_keyframes.size(); i--; ) {
|
|
|