diff options
Diffstat (limited to 'remoting/protocol/session.h')
-rw-r--r-- | remoting/protocol/session.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/remoting/protocol/session.h b/remoting/protocol/session.h index 35b3740..f806e21 100644 --- a/remoting/protocol/session.h +++ b/remoting/protocol/session.h @@ -17,7 +17,7 @@ class IPEndPoint; namespace remoting { namespace protocol { -class ChannelFactory; +class StreamChannelFactory; struct TransportRoute; // Generic interface for Chromotocol connection used by both client and host. @@ -99,8 +99,8 @@ class Session { // GetTransportChannelFactory() returns a factory that creates a new transport // channel for each logical channel. GetMultiplexedChannelFactory() channels // share a single underlying transport channel - virtual ChannelFactory* GetTransportChannelFactory() = 0; - virtual ChannelFactory* GetMultiplexedChannelFactory() = 0; + virtual StreamChannelFactory* GetTransportChannelFactory() = 0; + virtual StreamChannelFactory* GetMultiplexedChannelFactory() = 0; // Closes connection. Callbacks are guaranteed not to be called // after this method returns. Must be called before the object is |