| Index: third_party/WebKit/Source/core/html/forms/FormController.h
|
| diff --git a/third_party/WebKit/Source/core/html/forms/FormController.h b/third_party/WebKit/Source/core/html/forms/FormController.h
|
| index 785237bb50985c22718485587b69812a18d8ea01..16a6c75b73058bdc1f5174878d2e5b01e5a08b94 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/FormController.h
|
| +++ b/third_party/WebKit/Source/core/html/forms/FormController.h
|
| @@ -28,6 +28,7 @@
|
| #include "wtf/ListHashSet.h"
|
| #include "wtf/Vector.h"
|
| #include "wtf/text/AtomicStringHash.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -72,7 +73,7 @@ inline void FormControlState::append(const String& value)
|
| m_values.append(value);
|
| }
|
|
|
| -using SavedFormStateMap = HashMap<AtomicString, OwnPtr<SavedFormState>>;
|
| +using SavedFormStateMap = HashMap<AtomicString, std::unique_ptr<SavedFormState>>;
|
|
|
| class DocumentState final : public GarbageCollected<DocumentState> {
|
| public:
|
|
|