| Index: remoting/host/log_to_server.h
|
| diff --git a/remoting/host/log_to_server.h b/remoting/host/log_to_server.h
|
| index c26df44a1001af3a3ab9ede22b52f3f7d45f9763..d8469cd072e1e42db5f4938537e664e90b4b4a9c 100644
|
| --- a/remoting/host/log_to_server.h
|
| +++ b/remoting/host/log_to_server.h
|
| @@ -51,6 +51,10 @@ class LogToServer : public base::NonThreadSafe,
|
| virtual void OnClientAuthenticated(const std::string& jid) OVERRIDE;
|
| virtual void OnClientDisconnected(const std::string& jid) OVERRIDE;
|
| virtual void OnAccessDenied(const std::string& jid) OVERRIDE;
|
| + virtual void OnClientRouteChange(
|
| + const std::string& jid,
|
| + const std::string& channel_name,
|
| + const protocol::TransportRoute& route) OVERRIDE;
|
| virtual void OnShutdown() OVERRIDE;
|
|
|
| private:
|
| @@ -61,6 +65,7 @@ class LogToServer : public base::NonThreadSafe,
|
| ServerLogEntry::Mode mode_;
|
| SignalStrategy* signal_strategy_;
|
| scoped_ptr<IqSender> iq_sender_;
|
| + std::string current_connection_type_;
|
| std::deque<ServerLogEntry> pending_entries_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(LogToServer);
|
|
|