Home | History | Annotate | Download | only in src

Lines Matching defs:PlatformMessagePortChannel

32 #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(channel));
122 PlatformMessagePortChannel::PlatformMessagePortChannel()
130 PlatformMessagePortChannel::PlatformMessagePortChannel(WebMessagePortChannel* channel)
136 PlatformMessagePortChannel::~PlatformMessagePortChannel()
142 void PlatformMessagePortChannel::createChannel(PassRefPtr<MessagePort> port1, PassRefPtr<MessagePort> port2)
145 RefPtr<PlatformMessagePortChannel> channel1 = PlatformMessagePortChannel::create();
146 RefPtr<PlatformMessagePortChannel> channel2 = PlatformMessagePortChannel::create();
157 void PlatformMessagePortChannel::messageAvailable()
164 bool PlatformMessagePortChannel::entangleIfOpen(MessagePort* port)
171 void PlatformMessagePortChannel::disentangle()
177 void PlatformMessagePortChannel::postMessageToRemote(PassOwnPtr<MessagePortChannel::EventData> message)
188 WebCore::PlatformMessagePortChannel* platformChannel = (*channels)[i]->channel();
196 bool PlatformMessagePortChannel::tryGetMessageFromRemote(OwnPtr<MessagePortChannel::EventData>& result)
209 RefPtr<PlatformMessagePortChannel> platformChannel = create(webChannels[i]);
221 void PlatformMessagePortChannel::close()
230 bool PlatformMessagePortChannel::isConnectedTo(MessagePort* port)
236 bool PlatformMessagePortChannel::hasPendingActivity()
242 void PlatformMessagePortChannel::setEntangledChannel(PassRefPtr<PlatformMessagePortChannel> remote)
251 WebMessagePortChannel* PlatformMessagePortChannel::webChannelRelease()