| Index: remoting/host/chromoting_host.h
|
| diff --git a/remoting/host/chromoting_host.h b/remoting/host/chromoting_host.h
|
| index 0490525365d9fccd708fd632fdcacc3fc2ece705..5fede9054ef03802771ec382fbc9082970284d61 100644
|
| --- a/remoting/host/chromoting_host.h
|
| +++ b/remoting/host/chromoting_host.h
|
| @@ -62,7 +62,7 @@ class ScreenRecorder;
|
| // incoming connection.
|
| class ChromotingHost : public base::RefCountedThreadSafe<ChromotingHost>,
|
| public ClientSession::EventHandler,
|
| - public SignalStrategy::StatusObserver,
|
| + public SignalStrategy::Listener,
|
| public protocol::SessionManager::Listener {
|
| public:
|
| // Factory methods that must be used to create ChromotingHost
|
| @@ -98,10 +98,9 @@ class ChromotingHost : public base::RefCountedThreadSafe<ChromotingHost>,
|
| void SetSharedSecret(const std::string& shared_secret);
|
|
|
| ////////////////////////////////////////////////////////////////////////////
|
| - // SignalStrategy::StatusObserver implementation.
|
| - virtual void OnStateChange(
|
| - SignalStrategy::StatusObserver::State state) OVERRIDE;
|
| - virtual void OnJidChange(const std::string& full_jid) OVERRIDE;
|
| + // SignalStrategy::Listener interface.
|
| + virtual void OnSignalStrategyStateChange(
|
| + SignalStrategy::State state) OVERRIDE;
|
|
|
| ////////////////////////////////////////////////////////////////////////////
|
| // ClientSession::EventHandler implementation.
|
| @@ -112,7 +111,7 @@ class ChromotingHost : public base::RefCountedThreadSafe<ChromotingHost>,
|
| int64 sequence_number) OVERRIDE;
|
|
|
| // SessionManager::Listener implementation.
|
| - virtual void OnSessionManagerInitialized() OVERRIDE;
|
| + virtual void OnSessionManagerReady() OVERRIDE;
|
| virtual void OnIncomingSession(
|
| protocol::Session* session,
|
| protocol::SessionManager::IncomingSessionResponse* response) OVERRIDE;
|
|
|