OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TransportChannelProxy
(Results
1 - 4
of
4
) sorted by null
/external/chromium/third_party/libjingle/source/talk/p2p/base/
transportchannelproxy.cc
28
#include "talk/p2p/base/
transportchannelproxy
.h"
35
TransportChannelProxy
::
TransportChannelProxy
(const std::string& name,
40
TransportChannelProxy
::~
TransportChannelProxy
() {
45
void
TransportChannelProxy
::SetImplementation(TransportChannelImpl* impl) {
48
this, &
TransportChannelProxy
::OnReadableState);
50
this, &
TransportChannelProxy
::OnWritableState);
51
impl_->SignalReadPacket.connect(this, &
TransportChannelProxy
::OnReadPacket);
52
impl_->SignalRouteChange.connect(this, &
TransportChannelProxy
::OnRouteChange)
[
all
...]
transportchannelproxy.h
43
class
TransportChannelProxy
: public TransportChannel {
45
TransportChannelProxy
(const std::string& name, const std::string &content_type);
46
virtual ~
TransportChannelProxy
();
73
DISALLOW_EVIL_CONSTRUCTORS(
TransportChannelProxy
);
session.h
50
class
TransportChannelProxy
;
110
typedef std::map<std::string,
TransportChannelProxy
*> ChannelMap;
112
TransportChannelProxy
* GetProxy(const std::string& name);
115
void SetProxyImpl(const std::string& name,
TransportChannelProxy
* proxy);
session.cc
37
#include "talk/p2p/base/
transportchannelproxy
.h"
84
TransportChannelProxy
* channel =
85
new
TransportChannelProxy
(name, content_type);
134
TransportChannelProxy
* TransportProxy::GetProxy(const std::string& name) {
149
const std::string& name,
TransportChannelProxy
* proxy) {
[
all
...]
Completed in 137 milliseconds