OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InspectorInputAgent
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.h
45
class
InspectorInputAgent
: public InspectorBaseAgent<
InspectorInputAgent
>, public InspectorBackendDispatcher::InputCommandHandler {
46
WTF_MAKE_NONCOPYABLE(
InspectorInputAgent
);
48
static PassOwnPtr<
InspectorInputAgent
> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, Page* page, InspectorClient* client)
50
return adoptPtr(new
InspectorInputAgent
(instrumentingAgents, inspectorState, page, client));
53
~
InspectorInputAgent
();
61
InspectorInputAgent
(InstrumentingAgents*, InspectorCompositeState*, Page*, InspectorClient*);
InspectorInputAgent.cpp
32
#include "core/inspector/
InspectorInputAgent
.h"
92
InspectorInputAgent
::
InspectorInputAgent
(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, Page* page, InspectorClient* client)
93
: InspectorBaseAgent<
InspectorInputAgent
>("Input", instrumentingAgents, inspectorState)
98
InspectorInputAgent
::~
InspectorInputAgent
()
102
void
InspectorInputAgent
::dispatchKeyEvent(ErrorString* error, const String& type, const int* modifiers, const double* timestamp, const String* text, const String* unmodifiedText, const String* keyIdentifier, const int* windowsVirtualKeyCode, const int* nativeVirtualKeyCode, const int* macCharCode, const bool* autoRepeat, const bool* isKeypad, const bool* isSystemKey)
134
void
InspectorInputAgent
::dispatchMouseEvent(ErrorString* error, const String& type, int x, int y, const int* modifiers, const double* timestamp, const String* button, const int* clickCount, const bool* deviceSpace)
188
void
InspectorInputAgent
::dispatchTouchEvent(ErrorString* error, const String& type, const RefPtr<JSONArray>& touchPoints, const int* modifiers, const double* timestamp)
274
void
InspectorInputAgent
::dispatchGestureEvent(ErrorString*, const String& type, int x, int y, const double* timestamp, con (…)
[
all
...]
Completed in 101 milliseconds