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 8f785501f291344031a56f1e3e04883f518b9415..53feb7a036f475ec7098044e7ad1bf2e027b0561 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLFormElement.h |
+++ b/third_party/WebKit/Source/core/html/HTMLFormElement.h |
@@ -35,7 +35,6 @@ namespace blink { |
class Event; |
class FormAssociatedElement; |
-class GenericEventQueue; |
class HTMLFormControlElement; |
class HTMLFormControlsCollection; |
class HTMLImageElement; |
@@ -94,19 +93,6 @@ public: |
bool matchesValidityPseudoClasses() const final; |
bool isValidElement() final; |
- enum AutocompleteResult { |
- AutocompleteResultSuccess, |
- AutocompleteResultErrorDisabled, |
- AutocompleteResultErrorCancel, |
- AutocompleteResultErrorInvalid, |
- }; |
- |
- void requestAutocomplete(); |
- void finishRequestAutocomplete(AutocompleteResult); |
- |
- DEFINE_ATTRIBUTE_EVENT_LISTENER(autocomplete); |
- DEFINE_ATTRIBUTE_EVENT_LISTENER(autocompleteerror); |
- |
RadioButtonGroupScope& radioButtonGroupScope() { return m_radioButtonGroupScope; } |
const FormAssociatedElement::List& associatedElements() const; |
@@ -177,8 +163,6 @@ private: |
bool m_isInResetFunction : 1; |
bool m_wasDemoted : 1; |
- |
- Member<GenericEventQueue> m_pendingAutocompleteEventsQueue; |
}; |
} // namespace blink |