Searched defs:FormControlState (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFormControlElementWithState.h31 class FormControlState;
41 virtual FormControlState saveFormControlState() const;
42 // The specified FormControlState must have at least one string value.
43 virtual void restoreFormControlState(const FormControlState&) { } argument
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DPasswordInputType.cpp66 FormControlState PasswordInputType::saveFormControlState() const
70 return FormControlState();
73 void PasswordInputType::restoreFormControlState(const FormControlState&) argument
H A DFormController.h40 class FormControlState { class in namespace:blink
42 FormControlState() : m_type(TypeSkip) { } function in class:blink::FormControlState
43 explicit FormControlState(const String& value) : m_type(TypeRestore) { m_values.append(value); } function in class:blink::FormControlState
44 static FormControlState deserialize(const Vector<String>& stateVector, size_t& index);
45 FormControlState(const FormControlState& another) : m_type(another.m_type), m_values(another.m_values) { } function in class:blink::FormControlState
46 FormControlState& operator=(const FormControlState&);
56 explicit FormControlState(Type type) : m_type(type) { } function in class:blink::FormControlState
62 inline FormControlState
[all...]

Completed in 403 milliseconds