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

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DUIEvent.cpp24 #include "core/dom/UIEvent.h"
36 UIEvent::UIEvent() function in class:WebCore::UIEvent
42 UIEvent::UIEvent(const AtomicString& eventType, bool canBubbleArg, bool cancelableArg, PassRefPtr<AbstractView> viewArg, int detailArg) function in class:WebCore::UIEvent
50 UIEvent::UIEvent(const AtomicString& eventType, const UIEventInit& initializer) function in class:WebCore::UIEvent
58 UIEvent::~UIEvent()
62 void UIEvent
[all...]
H A DUIEvent.h42 class UIEvent : public Event { class in namespace:WebCore
44 static PassRefPtr<UIEvent> create()
46 return adoptRef(new UIEvent);
48 static PassRefPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail)
50 return adoptRef(new UIEvent(type, canBubble, cancelable, view, detail));
52 static PassRefPtr<UIEvent> create(const AtomicString& type, const UIEventInit& initializer)
54 return adoptRef(new UIEvent(type, initializer));
56 virtual ~UIEvent();
78 UIEvent();
79 UIEvent(cons
[all...]

Completed in 73 milliseconds