Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1336)

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: fixed Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | 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 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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698