Chromium Code Reviews

Side by Side Diff: remoting/protocol/connection_to_host.h

Issue 4726003: Implement InputStub in the host side for chromoting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
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 VideoStub; 17 class VideoStub;
19 18
20 class ConnectionToHost { 19 class ConnectionToHost {
21 public: 20 public:
22 class HostEventCallback { 21 class HostEventCallback {
23 public: 22 public:
(...skipping 31 matching lines...)
55 ConnectionToHost() {} 54 ConnectionToHost() {}
56 55
57 private: 56 private:
58 DISALLOW_COPY_AND_ASSIGN(ConnectionToHost); 57 DISALLOW_COPY_AND_ASSIGN(ConnectionToHost);
59 }; 58 };
60 59
61 } // namespace protocol 60 } // namespace protocol
62 } // namespace remoting 61 } // namespace remoting
63 62
64 #endif // REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_ 63 #endif // REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_
OLDNEW

Powered by Google App Engine