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

  /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...]
  /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...]

Completed in 71 milliseconds