| Index: remoting/protocol/session_config.h | 
| diff --git a/remoting/protocol/session_config.h b/remoting/protocol/session_config.h | 
| index 4e0a547f1b828ec910c0f006b5398bc33595c245..03afaa479103dd56e7150c042a4ae72fc8d03b14 100644 | 
| --- a/remoting/protocol/session_config.h | 
| +++ b/remoting/protocol/session_config.h | 
| @@ -35,15 +35,17 @@ struct ChannelConfig { | 
| CODEC_VORBIS, | 
| }; | 
|  | 
| +  // The constructor that creates a config with transport field set to | 
| +  // TRANSPORT_NONE which indicates that corresponding channel is disabled. | 
| ChannelConfig(); | 
| + | 
| +  // Creates a channel config with the specified parameters. | 
| ChannelConfig(TransportType transport, int version, Codec codec); | 
|  | 
| // operator== is overloaded so that std::find() works with | 
| // std::vector<ChannelConfig>. | 
| bool operator==(const ChannelConfig& b) const; | 
|  | 
| -  void Reset(); | 
| - | 
| TransportType transport; | 
| int version; | 
| Codec codec; | 
|  |