summaryrefslogtreecommitdiff
path: root/Source/WebCore/rendering/style/CounterDirectives.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/rendering/style/CounterDirectives.h')
-rw-r--r--Source/WebCore/rendering/style/CounterDirectives.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/WebCore/rendering/style/CounterDirectives.h b/Source/WebCore/rendering/style/CounterDirectives.h
index cf793bb8f..d5de076cf 100644
--- a/Source/WebCore/rendering/style/CounterDirectives.h
+++ b/Source/WebCore/rendering/style/CounterDirectives.h
@@ -25,6 +25,7 @@
#ifndef CounterDirectives_h
#define CounterDirectives_h
+#include <memory>
#include <wtf/HashMap.h>
#include <wtf/MathExtras.h>
#include <wtf/RefPtr.h>
@@ -104,7 +105,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 WebCore