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