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/host_stub.h" | 13 #include "remoting/protocol/host_stub.h" |
14 #include "remoting/protocol/input_stub.h" | 14 #include "remoting/protocol/input_stub.h" |
15 #include "remoting/protocol/stream_writer.h" | |
16 | 15 |
17 namespace remoting { | 16 namespace remoting { |
18 namespace protocol { | 17 namespace protocol { |
19 | 18 |
20 class ClientStub; | 19 class ClientStub; |
21 class SessionConfig; | 20 class SessionConfig; |
22 class VideoStub; | 21 class VideoStub; |
23 | 22 |
24 class ConnectionToHost { | 23 class ConnectionToHost { |
25 public: | 24 public: |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 VideoStub* video_stub_; | 80 VideoStub* video_stub_; |
82 | 81 |
83 private: | 82 private: |
84 DISALLOW_COPY_AND_ASSIGN(ConnectionToHost); | 83 DISALLOW_COPY_AND_ASSIGN(ConnectionToHost); |
85 }; | 84 }; |
86 | 85 |
87 } // namespace protocol | 86 } // namespace protocol |
88 } // namespace remoting | 87 } // namespace remoting |
89 | 88 |
90 #endif // REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_ | 89 #endif // REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_ |
OLD | NEW |