Searched defs:InputTypeView (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DInputTypeView.h69 // An InputTypeView object represents the UI-specific part of an
70 // HTMLInputElement. Do not expose instances of InputTypeView and classes
72 class InputTypeView : public RefCountedWillBeGarbageCollectedFinalized<InputTypeView> { class in namespace:blink
73 WTF_MAKE_NONCOPYABLE(InputTypeView);
77 static PassRefPtrWillBeRawPtr<InputTypeView> create(HTMLInputElement&);
78 virtual ~InputTypeView();
124 InputTypeView(HTMLInputElement& element) : m_element(&element) { } function in class:blink::InputTypeView
128 // Not a RefPtr because the HTMLInputElement object owns this InputTypeView
H A DInputTypeView.cpp29 #include "core/html/forms/InputTypeView.h"
38 PassRefPtrWillBeRawPtr<InputTypeView> InputTypeView::create(HTMLInputElement& input)
40 return adoptRefWillBeNoop(new InputTypeView(input));
43 InputTypeView::~InputTypeView()
47 void InputTypeView::trace(Visitor* visitor)
52 bool InputTypeView::sizeShouldIncludeDecoration(int, int& preferredSize) const
58 void InputTypeView::handleClickEvent(MouseEvent*)
62 void InputTypeView
[all...]

Completed in 576 milliseconds