OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputHandlerProxy
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/content/renderer/input/
input_handler_proxy.h
23
// compositor's input handling logic.
InputHandlerProxy
instances live entirely
26
class CONTENT_EXPORT
InputHandlerProxy
30
explicit
InputHandlerProxy
(cc::InputHandler* input_handler);
31
virtual ~
InputHandlerProxy
();
90
DISALLOW_COPY_AND_ASSIGN(
InputHandlerProxy
);
input_handler_wrapper.h
26
InputHandlerProxy
* input_handler_proxy() { return &input_handler_proxy_; }
41
InputHandlerProxy
input_handler_proxy_;
input_handler_proxy.cc
64
InputHandlerProxy
::
InputHandlerProxy
(cc::InputHandler* input_handler)
79
InputHandlerProxy
::~
InputHandlerProxy
() {}
81
void
InputHandlerProxy
::WillShutdown() {
87
void
InputHandlerProxy
::SetClient(InputHandlerProxyClient* client) {
92
InputHandlerProxy
::EventDisposition
93
InputHandlerProxy
::HandleInputEventWithLatencyInfo(
102
InputHandlerProxy
::EventDisposition disposition = HandleInputEvent(event);
106
InputHandlerProxy
::EventDisposition InputHandlerProxy::HandleInputEvent
[
all
...]
input_handler_manager.cc
22
InputHandlerProxy
::EventDisposition disposition) {
24
case
InputHandlerProxy
::DID_HANDLE:
26
case
InputHandlerProxy
::DID_NOT_HANDLE:
28
case
InputHandlerProxy
::DROP_EVENT:
120
InputHandlerProxy
* proxy = it->second->input_handler_proxy();
input_handler_proxy_unittest.cc
141
: expected_disposition_(
InputHandlerProxy
::DID_HANDLE) {
143
new content::
InputHandlerProxy
(&mock_input_handler_));
162
scoped_ptr<content::
InputHandlerProxy
> input_handler_;
166
InputHandlerProxy
::EventDisposition expected_disposition_;
170
expected_disposition_ =
InputHandlerProxy
::DID_NOT_HANDLE;
181
expected_disposition_ =
InputHandlerProxy
::DID_HANDLE;
191
expected_disposition_ =
InputHandlerProxy
::DROP_EVENT;
204
expected_disposition_ =
InputHandlerProxy
::DID_HANDLE;
226
expected_disposition_ =
InputHandlerProxy
::DID_NOT_HANDLE;
255
expected_disposition_ =
InputHandlerProxy
::DROP_EVENT
[
all
...]
Completed in 122 milliseconds