Index: third_party/WebKit/Source/core/css/CSSSelectorList.h |
diff --git a/third_party/WebKit/Source/core/css/CSSSelectorList.h b/third_party/WebKit/Source/core/css/CSSSelectorList.h |
index c0edf57fe0ace34239bac883c0bc703938f8c532..534ef7015fce82ae16d16b7fcafc06497cd970bf 100644 |
--- a/third_party/WebKit/Source/core/css/CSSSelectorList.h |
+++ b/third_party/WebKit/Source/core/css/CSSSelectorList.h |
@@ -28,6 +28,7 @@ |
#include "core/CoreExport.h" |
#include "core/css/CSSSelector.h" |
+#include <memory> |
namespace blink { |
@@ -57,7 +58,7 @@ public: |
deleteSelectorsIfNeeded(); |
} |
- static CSSSelectorList adoptSelectorVector(Vector<OwnPtr<CSSParserSelector>>& selectorVector); |
+ static CSSSelectorList adoptSelectorVector(Vector<std::unique_ptr<CSSParserSelector>>& selectorVector); |
CSSSelectorList copy() const; |
bool isValid() const { return !!m_selectorArray; } |