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;
40 virtual FormControlState saveFormControlState() const;
41 // The specified FormControlState must have at least one string value.
42 virtual void restoreFormControlState(const FormControlState&) { } argument
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DFormController.h39 class FormControlState { class in namespace:WebCore
41 FormControlState() : m_type(TypeSkip) { } function in class:WebCore::FormControlState
42 explicit FormControlState(const String& value) : m_type(TypeRestore) { m_values.append(value); } function in class:WebCore::FormControlState
43 static FormControlState deserialize(const Vector<String>& stateVector, size_t& index);
44 FormControlState(const FormControlState& another) : m_type(another.m_type), m_values(another.m_values) { } function in class:WebCore::FormControlState
45 FormControlState& operator=(const FormControlState&);
55 explicit FormControlState(Type type) : m_type(type) { } function in class:WebCore::FormControlState
61 inline FormControlState
[all...]
H A DPasswordInputType.cpp104 FormControlState PasswordInputType::saveFormControlState() const
108 return FormControlState();
111 void PasswordInputType::restoreFormControlState(const FormControlState&) argument

Completed in 137 milliseconds