Searched defs:PlatformMessagePortChannel (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
H A DPlatformMessagePortChannel.h48 // PlatformMessagePortChannel is a platform-dependent interface to the remote side of a message channel.
49 class PlatformMessagePortChannel : public ThreadSafeRefCounted<PlatformMessagePortChannel>, class in namespace:WebCore
53 static PassRefPtr<PlatformMessagePortChannel> create();
54 static PassRefPtr<PlatformMessagePortChannel> create(WebKit::WebMessagePortChannel*);
68 ~PlatformMessagePortChannel();
71 PlatformMessagePortChannel();
72 PlatformMessagePortChannel(WebKit::WebMessagePortChannel*);
74 void setEntangledChannel(PassRefPtr<PlatformMessagePortChannel>);
83 RefPtr<PlatformMessagePortChannel> m_entangledChanne
[all...]
H A DPlatformMessagePortChannel.cpp32 #include "PlatformMessagePortChannel.h"
47 PassOwnPtr<MessagePortChannel> MessagePortChannel::create(PassRefPtr<PlatformMessagePortChannel> channel)
54 PlatformMessagePortChannel::createChannel(port1, port2);
57 MessagePortChannel::MessagePortChannel(PassRefPtr<PlatformMessagePortChannel> channel)
110 PassRefPtr<PlatformMessagePortChannel> PlatformMessagePortChannel::create()
112 return adoptRef(new PlatformMessagePortChannel());
115 PassRefPtr<PlatformMessagePortChannel> PlatformMessagePortChannel::create(
118 return adoptRef(new PlatformMessagePortChannel(channe
122 PlatformMessagePortChannel::PlatformMessagePortChannel() function in class:WebCore::PlatformMessagePortChannel
130 PlatformMessagePortChannel::PlatformMessagePortChannel(WebMessagePortChannel* channel) function in class:WebCore::PlatformMessagePortChannel
[all...]
/external/webkit/Source/WebCore/dom/default/
H A DPlatformMessagePortChannel.h44 // PlatformMessagePortChannel is a platform-dependent interface to the remote side of a message channel.
45 // This default implementation supports multiple threads running within a single process. Implementations for multi-process platforms should define these public APIs in their own platform-specific PlatformMessagePortChannel file.
47 class PlatformMessagePortChannel : public ThreadSafeRefCounted<PlatformMessagePortChannel> { class in namespace:WebCore
87 ~PlatformMessagePortChannel();
90 static PassRefPtr<PlatformMessagePortChannel> create(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing);
91 PlatformMessagePortChannel(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing);
93 PassRefPtr<PlatformMessagePortChannel> entangledChannel();
94 void setEntangledChannel(PassRefPtr<PlatformMessagePortChannel>);
104 RefPtr<PlatformMessagePortChannel> m_entangledChanne
[all...]
H A DPlatformMessagePortChannel.cpp32 #include "PlatformMessagePortChannel.h"
39 // MessagePortChannel implementations - just delegate to the PlatformMessagePortChannel.
42 PlatformMessagePortChannel::createChannel(port1, port2);
45 PassOwnPtr<MessagePortChannel> MessagePortChannel::create(PassRefPtr<PlatformMessagePortChannel> channel)
50 MessagePortChannel::MessagePortChannel(PassRefPtr<PlatformMessagePortChannel> channel)
101 PassRefPtr<PlatformMessagePortChannel> PlatformMessagePortChannel::create(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing)
103 return adoptRef(new PlatformMessagePortChannel(incoming, outgoing));
106 PlatformMessagePortChannel::PlatformMessagePortChannel(PassRefPt function in class:WebCore::PlatformMessagePortChannel
[all...]

Completed in 80 milliseconds