| Index: third_party/WebKit/Source/core/html/forms/FormController.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/FormController.cpp b/third_party/WebKit/Source/core/html/forms/FormController.cpp
|
| index 89da4cf3c5ef594462eee9fd5cb6cd7c47bc06c6..02cf26aac76865070bdae0f2cfb539967db8897b 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/FormController.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/FormController.cpp
|
| @@ -410,7 +410,7 @@ void DocumentState::addControl(HTMLFormControlElementWithState* control) {
|
|
|
| void DocumentState::removeControl(HTMLFormControlElementWithState* control) {
|
| CHECK(m_formControls.contains(control));
|
| - m_formControls.remove(control);
|
| + m_formControls.erase(control);
|
| }
|
|
|
| static String formStateSignature() {
|
|
|