HomeSort by relevance Sort by last modified time
    Searched defs:InputTypeView (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputTypeView.h 68 // An InputTypeView object represents the UI-specific part of an
69 // HTMLInputElement. Do not expose instances of InputTypeView and classes
71 class InputTypeView : public RefCountedWillBeGarbageCollectedFinalized<InputTypeView> {
72 WTF_MAKE_NONCOPYABLE(InputTypeView);
76 static PassRefPtrWillBeRawPtr<InputTypeView> create(HTMLInputElement&);
77 virtual ~InputTypeView();
121 InputTypeView(HTMLInputElement& element) : m_element(&element) { }
125 // Not a RefPtr because the HTMLInputElement object owns this InputTypeView
InputTypeView.cpp 29 #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::handleMouseDownEvent(MouseEvent*
    [all...]

Completed in 30 milliseconds