Searched defs:UIEvent (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/events/
H A DUIEvent.cpp24 #include "core/events/UIEvent.h"
35 UIEvent::UIEvent() function in class:blink::UIEvent
40 UIEvent::UIEvent(const AtomicString& eventType, bool canBubbleArg, bool cancelableArg, PassRefPtrWillBeRawPtr<AbstractView> viewArg, int detailArg) function in class:blink::UIEvent
47 UIEvent::UIEvent(const AtomicString& eventType, const UIEventInit& initializer) function in class:blink::UIEvent
54 UIEvent::~UIEvent()
58 void UIEvent
[all...]
H A DUIEvent.h42 class UIEvent : public Event { class in namespace:blink
45 static PassRefPtrWillBeRawPtr<UIEvent> create()
47 return adoptRefWillBeNoop(new UIEvent);
49 static PassRefPtrWillBeRawPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail)
51 return adoptRefWillBeNoop(new UIEvent(type, canBubble, cancelable, view, detail));
53 static PassRefPtrWillBeRawPtr<UIEvent> create(const AtomicString& type, const UIEventInit& initializer)
55 return adoptRefWillBeNoop(new UIEvent(type, initializer));
57 virtual ~UIEvent();
81 UIEvent();
82 UIEvent(cons
[all...]

Completed in 1981 milliseconds