OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InputTypeView
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputTypeView.h
65
// An
InputTypeView
object represents the UI-specific part of an
66
// HTMLInputElement. Do not expose instances of
InputTypeView
and classes
68
class
InputTypeView
: public RefCounted<
InputTypeView
> {
69
WTF_MAKE_NONCOPYABLE(
InputTypeView
);
73
static PassRefPtr<
InputTypeView
> create(HTMLInputElement&);
74
virtual ~
InputTypeView
();
116
InputTypeView
(HTMLInputElement& element) : m_element(element) { }
120
// Not a RefPtr because the HTMLInputElement object owns this
InputTypeView
InputTypeView.cpp
29
#include "core/html/forms/
InputTypeView
.h"
38
PassRefPtr<
InputTypeView
>
InputTypeView
::create(HTMLInputElement& input)
40
return adoptRef(new
InputTypeView
(input));
43
InputTypeView
::~
InputTypeView
()
47
bool
InputTypeView
::sizeShouldIncludeDecoration(int, int& preferredSize) const
53
void
InputTypeView
::handleClickEvent(MouseEvent*)
57
void
InputTypeView
::handleMouseDownEvent(MouseEvent*)
61
void
InputTypeView
::handleKeydownEvent(KeyboardEvent*
[
all
...]
Completed in 32 milliseconds