Searched refs:ClipboardEvent (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/dom/
H A DClipboardEvent.cpp24 #include "ClipboardEvent.h"
31 ClipboardEvent::ClipboardEvent() function in class:WebCore::ClipboardEvent
35 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<DataTransfer> dataTransfer) function in class:WebCore::ClipboardEvent
40 ClipboardEvent::~ClipboardEvent()
44 EventInterface ClipboardEvent::eventInterface() const
46 // Notice that there is no ClipboardEvent.idl.
50 bool ClipboardEvent
[all...]
H A DClipboardEvent.h33 class ClipboardEvent : public Event { class in namespace:WebCore
35 virtual ~ClipboardEvent();
37 static PassRefPtr<ClipboardEvent> create()
39 return adoptRef(new ClipboardEvent);
41 static PassRefPtr<ClipboardEvent> create(const AtomicString& type, bool canBubbleArg, bool cancelableArg, PassRefPtr<DataTransfer> clipboardArg)
43 return adoptRef(new ClipboardEvent(type, canBubbleArg, cancelableArg, clipboardArg));
49 ClipboardEvent();
50 ClipboardEvent(const AtomicString& type, bool canBubbleArg, bool cancelableArg, PassRefPtr<DataTransfer>);
/macosx-10.10/WebCore-7600.1.25/editing/
H A DEditor.cpp36 #include "ClipboardEvent.h"
929 RefPtr<Event> event = ClipboardEvent::create(eventType, true, true, dataTransfer);

Completed in 78 milliseconds