| Index: third_party/WebKit/Source/core/style/CounterDirectives.h
|
| diff --git a/third_party/WebKit/Source/core/style/CounterDirectives.h b/third_party/WebKit/Source/core/style/CounterDirectives.h
|
| index 6e6de3847dba63aac27c6abbc83e2b2cc2f2b7be..a72059902c4ca4550881fd1486a4e255748b7399 100644
|
| --- a/third_party/WebKit/Source/core/style/CounterDirectives.h
|
| +++ b/third_party/WebKit/Source/core/style/CounterDirectives.h
|
| @@ -31,6 +31,7 @@
|
| #include "wtf/RefPtr.h"
|
| #include "wtf/text/AtomicString.h"
|
| #include "wtf/text/AtomicStringHash.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -106,7 +107,7 @@ inline bool operator!=(const CounterDirectives& a, const CounterDirectives& b) {
|
|
|
| typedef HashMap<AtomicString, CounterDirectives> CounterDirectiveMap;
|
|
|
| -PassOwnPtr<CounterDirectiveMap> clone(const CounterDirectiveMap&);
|
| +std::unique_ptr<CounterDirectiveMap> clone(const CounterDirectiveMap&);
|
|
|
| } // namespace blink
|
|
|
|
|