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