| Index: remoting/protocol/jingle_session.h
|
| diff --git a/remoting/protocol/jingle_session.h b/remoting/protocol/jingle_session.h
|
| index 3230f572e065f633cf9340ced1d30b4ee35482fa..86a51255fff37196e50781d99b4a89b6aa4b65ef 100644
|
| --- a/remoting/protocol/jingle_session.h
|
| +++ b/remoting/protocol/jingle_session.h
|
| @@ -30,6 +30,8 @@ class JingleSession : public protocol::Session,
|
| // Session interface.
|
| virtual void SetStateChangeCallback(
|
| const StateChangeCallback& callback) OVERRIDE;
|
| + virtual void SetRouteChangeCallback(
|
| + const RouteChangeCallback& callback) OVERRIDE;
|
| virtual Error error() OVERRIDE;
|
| virtual void CreateStreamChannel(
|
| const std::string& name,
|
| @@ -104,6 +106,9 @@ class JingleSession : public protocol::Session,
|
| void OnChannelConnectorFinished(const std::string& name,
|
| JingleChannelConnector* connector);
|
|
|
| + void OnRouteChange(cricket::TransportChannel* channel,
|
| + const cricket::Candidate& candidate);
|
| +
|
| const cricket::ContentInfo* GetContentInfo() const;
|
|
|
| void SetState(State new_state);
|
| @@ -120,6 +125,7 @@ class JingleSession : public protocol::Session,
|
|
|
| State state_;
|
| StateChangeCallback state_change_callback_;
|
| + RouteChangeCallback route_change_callback_;
|
|
|
| Error error_;
|
|
|
|
|