Index: third_party/WebKit/Source/core/html/ClassList.h |
diff --git a/third_party/WebKit/Source/core/html/ClassList.h b/third_party/WebKit/Source/core/html/ClassList.h |
index 1ee73c43de9d3136647f97e2c523239d09dbd575..96569099b160a72bc649e7d09f343f3870547a6f 100644 |
--- a/third_party/WebKit/Source/core/html/ClassList.h |
+++ b/third_party/WebKit/Source/core/html/ClassList.h |
@@ -29,7 +29,7 @@ |
#include "core/dom/DOMTokenList.h" |
#include "core/dom/Element.h" |
#include "core/dom/SpaceSplitString.h" |
-#include "wtf/OwnPtr.h" |
+#include <memory> |
namespace blink { |
@@ -64,7 +64,7 @@ private: |
void setValue(const AtomicString& value) override { m_element->setAttribute(HTMLNames::classAttr, value); } |
Member<Element> m_element; |
- mutable OwnPtr<SpaceSplitString> m_classNamesForQuirksMode; |
+ mutable std::unique_ptr<SpaceSplitString> m_classNamesForQuirksMode; |
}; |
} // namespace blink |