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

/external/chromium_org/remoting/webapp/
H A Dclipboard_event_proto.js5 // This file contains type definitions for the remoting.ClipboardEvent class,
28 remoting.ClipboardEvent = function() {};
31 remoting.ClipboardEvent.prototype.clipboardData;
34 remoting.ClipboardEvent.prototype.preventDefault;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DClipboardEvent.cpp24 #include "core/dom/ClipboardEvent.h"
31 ClipboardEvent::ClipboardEvent() function in class:WebCore::ClipboardEvent
35 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<Clipboard> clipboard) function in class:WebCore::ClipboardEvent
40 ClipboardEvent::~ClipboardEvent()
44 const AtomicString& ClipboardEvent::interfaceName() 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<Clipboard> clipboardArg)
43 return adoptRef(new ClipboardEvent(type, canBubbleArg, cancelableArg, clipboardArg));
49 ClipboardEvent();
50 ClipboardEvent(const AtomicString& type, bool canBubbleArg, bool cancelableArg, PassRefPtr<Clipboard>);

Completed in 183 milliseconds