Home
last modified time | relevance | path

Searched defs:FormControlState (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLFormControlElementWithState.h31 class FormControlState; variable
42 virtual void restoreFormControlState(const FormControlState&) { } in restoreFormControlState()
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DFormController.h41 FormControlState() : m_type(TypeSkip) { } in FormControlState() function
42 explicit FormControlState(const String& value) : m_type(TypeRestore) { m_values.append(value); } in FormControlState() function
44FormControlState(const FormControlState& another) : m_type(another.m_type), m_values(another.m_val… in FormControlState() function
55 explicit FormControlState(Type type) : m_type(type) { } in FormControlState() function
DPasswordInputType.cpp111 void PasswordInputType::restoreFormControlState(const FormControlState&) in restoreFormControlState()
DDateTimeFieldsState.h33 class FormControlState; variable