Chromium Code Reviews| Index: remoting/protocol/connection_to_host_impl.h |
| diff --git a/remoting/protocol/connection_to_host_impl.h b/remoting/protocol/connection_to_host_impl.h |
| index fc2306d9760c5c671629d4b1010ad24348b3c22e..1aa58f5ecdb7129006cbf67ac7410721949def53 100644 |
| --- a/remoting/protocol/connection_to_host_impl.h |
| +++ b/remoting/protocol/connection_to_host_impl.h |
| @@ -37,6 +37,12 @@ class ClientControlDispatcher; |
| class ClientEventDispatcher; |
| class ClientVideoDispatcher; |
| +const char* ConnectionStateToFriendlyString( |
|
Sergey Ulanov
2015/07/29 00:56:23
Make this static method in ConnectionToHost?
tonychun
2015/07/29 16:10:13
Done.
|
| + remoting::protocol::ConnectionToHost::State state); |
| + |
| +const char* ProtocolErrorToFriendlyString( |
| + remoting::protocol::ErrorCode error_code); |
|
joedow
2015/07/28 23:09:05
I'm wondering if this should be in connection_to_h
Sergey Ulanov
2015/07/29 00:56:23
Yeah, I don't think it belongs in this file. Move
tonychun
2015/07/29 16:10:13
I've added an Error class which also has a static
|
| + |
| class ConnectionToHostImpl : public ConnectionToHost, |
| public SignalStrategy::Listener, |
| public SessionManager::Listener, |