Index: third_party/WebKit/Source/core/css/SelectorFilter.h |
diff --git a/third_party/WebKit/Source/core/css/SelectorFilter.h b/third_party/WebKit/Source/core/css/SelectorFilter.h |
index 91adbfd2368d36b134861923e329729c331f2f41..6119434b51e31dd54740b8ef1420573ce22a7ada 100644 |
--- a/third_party/WebKit/Source/core/css/SelectorFilter.h |
+++ b/third_party/WebKit/Source/core/css/SelectorFilter.h |
@@ -32,6 +32,7 @@ |
#include "core/dom/Element.h" |
#include "wtf/BloomFilter.h" |
#include "wtf/Vector.h" |
+#include <memory> |
namespace blink { |
@@ -74,7 +75,7 @@ private: |
// With 100 unique strings in the filter, 2^12 slot table has false positive rate of ~0.2%. |
using IdentifierFilter = BloomFilter<12>; |
- OwnPtr<IdentifierFilter> m_ancestorIdentifierFilter; |
+ std::unique_ptr<IdentifierFilter> m_ancestorIdentifierFilter; |
}; |
template <unsigned maximumIdentifierCount> |