OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InputEventsBlocker
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/chromeos/login/
input_events_blocker.h
16
class
InputEventsBlocker
: public ui::EventHandler {
18
InputEventsBlocker
();
19
virtual ~
InputEventsBlocker
();
27
DISALLOW_COPY_AND_ASSIGN(
InputEventsBlocker
);
input_events_blocker.cc
13
InputEventsBlocker
::
InputEventsBlocker
() {
15
VLOG(1) << "
InputEventsBlocker
" << this << " created.";
18
InputEventsBlocker
::~
InputEventsBlocker
() {
20
VLOG(1) << "
InputEventsBlocker
" << this << " destroyed.";
23
void
InputEventsBlocker
::OnKeyEvent(ui::KeyEvent* event) {
27
void
InputEventsBlocker
::OnMouseEvent(ui::MouseEvent* event) {
31
void
InputEventsBlocker
::OnTouchEvent(ui::TouchEvent* event) {
35
void
InputEventsBlocker
::OnGestureEvent(ui::GestureEvent* event)
[
all
...]
Completed in 23 milliseconds