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

  /external/chromium_org/content/common/input/
input_event.cc 11 InputEvent::InputEvent() : is_keyboard_shortcut(false) {}
13 InputEvent::InputEvent(const blink::WebInputEvent& web_event,
20 InputEvent::~InputEvent() {}
input_event.h 21 class CONTENT_EXPORT InputEvent {
23 InputEvent();
24 InputEvent(const blink::WebInputEvent& web_event,
27 ~InputEvent();
34 DISALLOW_COPY_AND_ASSIGN(InputEvent);
  /external/chromium_org/ppapi/cpp/
input_event.h 35 /// bool MyInstance::HandleInputEvent(const pp::InputEvent& event) {
46 class InputEvent : public Resource {
48 /// Default constructor that creates an is_null() InputEvent object.
49 InputEvent();
52 /// resource ID. The InputEvent object will be is_null() if the given
56 explicit InputEvent(PP_Resource input_event_resource);
58 ~InputEvent();
92 class MouseInputEvent : public InputEvent {
101 /// @param event An <code>InputEvent</code>.
102 explicit MouseInputEvent(const InputEvent& event)
    [all...]
input_event.cc 48 // InputEvent ------------------------------------------------------------------
50 InputEvent::InputEvent() : Resource() {
53 InputEvent::InputEvent(PP_Resource input_event_resource) : Resource() {
63 InputEvent::~InputEvent() {
66 PP_InputEvent_Type InputEvent::GetType() const {
72 PP_TimeTicks InputEvent::GetTimeStamp() const {
78 uint32_t InputEvent::GetModifiers() const
    [all...]
  /external/chromium_org/ppapi/tests/
test_input_event.cc 14 REGISTER_TEST_CASE(InputEvent);
125 pp::InputEvent TestInputEvent::CreateMouseEvent(
139 pp::InputEvent TestInputEvent::CreateWheelEvent() {
149 pp::InputEvent TestInputEvent::CreateKeyEvent(PP_InputEvent_Type type,
162 pp::InputEvent TestInputEvent::CreateCharEvent(const std::string& text) {
173 pp::InputEvent TestInputEvent::CreateTouchEvent(PP_InputEvent_Type type,
196 const pp::InputEvent& input_event) {
197 expected_input_event_ = pp::InputEvent(input_event.pp_resource());
305 bool TestInputEvent::HandleInputEvent(const pp::InputEvent& input_event) {

Completed in 80 milliseconds