| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_ | 5 #ifndef REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_ |
| 6 #define REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_ | 6 #define REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/ref_counted.h" | 10 #include "base/ref_counted.h" |
| 11 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
| 12 #include "remoting/proto/internal.pb.h" | 12 #include "remoting/proto/internal.pb.h" |
| 13 #include "remoting/protocol/message_decoder.h" | |
| 14 | 13 |
| 15 namespace remoting { | 14 namespace remoting { |
| 16 namespace protocol { | 15 namespace protocol { |
| 17 | 16 |
| 18 class SessionConfig; | 17 class SessionConfig; |
| 19 class VideoStub; | 18 class VideoStub; |
| 20 | 19 |
| 21 class ConnectionToHost { | 20 class ConnectionToHost { |
| 22 public: | 21 public: |
| 23 class HostEventCallback { | 22 class HostEventCallback { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 53 ConnectionToHost() {} | 52 ConnectionToHost() {} |
| 54 | 53 |
| 55 private: | 54 private: |
| 56 DISALLOW_COPY_AND_ASSIGN(ConnectionToHost); | 55 DISALLOW_COPY_AND_ASSIGN(ConnectionToHost); |
| 57 }; | 56 }; |
| 58 | 57 |
| 59 } // namespace protocol | 58 } // namespace protocol |
| 60 } // namespace remoting | 59 } // namespace remoting |
| 61 | 60 |
| 62 #endif // REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_ | 61 #endif // REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_ |
| OLD | NEW |