| Index: remoting/protocol/pepper_session.h
|
| diff --git a/remoting/protocol/pepper_session.h b/remoting/protocol/pepper_session.h
|
| index eaaaa6e6f40d66d8821c1e0b8df347e2882e49df..7e0668752018ff1a408e679c42a874b5ad33e277 100644
|
| --- a/remoting/protocol/pepper_session.h
|
| +++ b/remoting/protocol/pepper_session.h
|
| @@ -49,8 +49,6 @@ class PepperSession : public Session {
|
| const std::string& name,
|
| const DatagramChannelCallback& callback) OVERRIDE;
|
| virtual void CancelChannelCreation(const std::string& name) OVERRIDE;
|
| - virtual net::Socket* control_channel() OVERRIDE;
|
| - virtual net::Socket* event_channel() OVERRIDE;
|
| virtual const std::string& jid() OVERRIDE;
|
| virtual const CandidateSessionConfig* candidate_config() OVERRIDE;
|
| virtual const SessionConfig& config() OVERRIDE;
|
| @@ -104,12 +102,6 @@ class PepperSession : public Session {
|
| void SendTransportInfo();
|
| void OnTransportInfoResponse(const buzz::XmlElement* response);
|
|
|
| - // Helper methods to create event and control channels.
|
| - // TODO(sergeyu): Remove these methods.
|
| - void CreateChannels();
|
| - void OnChannelConnected(scoped_ptr<net::Socket>* socket_container,
|
| - net::StreamSocket* socket);
|
| -
|
| // Close all the channels and terminate the session.
|
| void CloseInternal(bool failed);
|
|
|
| @@ -138,9 +130,6 @@ class PepperSession : public Session {
|
|
|
| ChannelsMap channels_;
|
|
|
| - scoped_ptr<net::Socket> control_channel_socket_;
|
| - scoped_ptr<net::Socket> event_channel_socket_;
|
| -
|
| base::OneShotTimer<PepperSession> transport_infos_timer_;
|
| std::list<cricket::Candidate> pending_candidates_;
|
|
|
|
|