Home | History | Annotate | Download | only in dom

Lines Matching defs:MessagePort

46 class MessagePort;
50 typedef Vector<RefPtr<MessagePort>, 1> MessagePortArray;
52 class MessagePort : public RefCounted<MessagePort>, public ScriptWrappable, public EventTarget {
54 static PassRefPtr<MessagePort> create(ScriptExecutionContext& scriptExecutionContext) { return adoptRef(new MessagePort(scriptExecutionContext)); }
55 virtual ~MessagePort();
81 using RefCounted<MessagePort>::ref;
82 using RefCounted<MessagePort>::deref;
96 MessagePort* locallyEntangledPort();
105 explicit MessagePort(ScriptExecutionContext&);