Index: third_party/WebKit/Source/core/html/HTMLFormElement.h |
diff --git a/third_party/WebKit/Source/core/html/HTMLFormElement.h b/third_party/WebKit/Source/core/html/HTMLFormElement.h |
index 9dbecb71bf0a36d72b628271c2d08214f1885ba9..a9cbcccdff9cf4acf5d1908645b578aa25681a3a 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLFormElement.h |
+++ b/third_party/WebKit/Source/core/html/HTMLFormElement.h |
@@ -89,8 +89,6 @@ public: |
String method() const; |
void setMethod(const AtomicString&); |
- bool wasUserSubmitted() const; |
- |
// Find the 'default button.' |
// https://html.spec.whatwg.org/multipage/forms.html#default-button |
HTMLFormControlElement* findDefaultButton() const; |
@@ -140,7 +138,7 @@ private: |
void copyNonAttributePropertiesFromElement(const Element&) override; |
void submitDialog(PassRefPtrWillBeRawPtr<FormSubmission>); |
- void submit(Event*, bool activateSubmitButton, bool processingUserGesture); |
+ void submit(Event*, bool activateSubmitButton); |
void scheduleFormSubmission(PassRefPtrWillBeRawPtr<FormSubmission>); |
@@ -179,7 +177,6 @@ private: |
bool m_hasElementsAssociatedByFormAttribute : 1; |
bool m_didFinishParsingChildren : 1; |
- bool m_wasUserSubmitted : 1; |
bool m_isSubmittingOrInUserJSSubmitEvent : 1; |
bool m_shouldSubmit : 1; |