HomeSort by relevance Sort by last modified time
    Searched refs:PlatformMessagePortChannel (Results 1 - 10 of 10) sorted by null

  /external/webkit/Source/WebCore/dom/default/
PlatformMessagePortChannel.cpp 32 #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(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing
    [all...]
PlatformMessagePortChannel.h 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
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
PlatformMessagePortChannel.h 48 // PlatformMessagePortChannel is a platform-dependent interface to the remote side of a message channel.
49 class PlatformMessagePortChannel : public ThreadSafeRefCounted<PlatformMessagePortChannel>,
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_entangledChannel
    [all...]
PlatformMessagePortChannel.cpp 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))
    [all...]
WebSharedWorkerImpl.cpp 38 #include "PlatformMessagePortChannel.h"
72 RefPtr<PlatformMessagePortChannel> platform_channel =
73 PlatformMessagePortChannel::create(webChannel);
WebWorkerImpl.cpp 47 #include "PlatformMessagePortChannel.h"
123 RefPtr<PlatformMessagePortChannel> platform_channel =
124 PlatformMessagePortChannel::create(webChannels[i]);
SharedWorkerRepository.cpp 41 #include "PlatformMessagePortChannel.h"
148 PlatformMessagePortChannel* platformChannel = port->channel();
WebWorkerClientImpl.cpp 54 #include "PlatformMessagePortChannel.h"
215 RefPtr<PlatformMessagePortChannel> platform_channel =
216 PlatformMessagePortChannel::create(channels[i]);
  /external/webkit/Source/WebCore/dom/
MessagePortChannel.h 49 class PlatformMessagePortChannel;
57 // It acts as a wrapper around the platform-dependent PlatformMessagePortChannel implementation which ensures that the platform-dependent close() method is invoked before destruction.
64 static PassOwnPtr<MessagePortChannel> create(PassRefPtr<PlatformMessagePortChannel>);
107 PlatformMessagePortChannel* channel() const { return m_channel.get(); }
110 MessagePortChannel(PassRefPtr<PlatformMessagePortChannel>);
111 RefPtr<PlatformMessagePortChannel> m_channel;
  /external/webkit/Source/WebCore/
Android.mk 220 dom/default/PlatformMessagePortChannel.cpp \
    [all...]

Completed in 106 milliseconds