Index: third_party/WebKit/Source/core/style/DataEquivalency.h |
diff --git a/third_party/WebKit/Source/core/style/DataEquivalency.h b/third_party/WebKit/Source/core/style/DataEquivalency.h |
index b9b49370ea5779eca964ddbc66171e8958b58cda..b37b6265233168b22bf06558e720061813849d83 100644 |
--- a/third_party/WebKit/Source/core/style/DataEquivalency.h |
+++ b/third_party/WebKit/Source/core/style/DataEquivalency.h |
@@ -5,8 +5,8 @@ |
#ifndef DataEquivalency_h |
#define DataEquivalency_h |
-#include "wtf/OwnPtr.h" |
#include "wtf/RefPtr.h" |
+#include <memory> |
namespace blink { |
@@ -44,7 +44,7 @@ bool dataEquivalent(const Member<T>& a, const Member<T>& b) |
} |
template <typename T> |
-bool dataEquivalent(const OwnPtr<T>& a, const OwnPtr<T>& b) |
+bool dataEquivalent(const std::unique_ptr<T>& a, const std::unique_ptr<T>& b) |
{ |
return dataEquivalent(a.get(), b.get()); |
} |