Home | History | Annotate | Download | only in default

Lines Matching defs:PlatformMessagePortChannel

44     // 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> {
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_entangledChannel;