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

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

Issue 279273002: Move ConnectionToHost parameters out from Connect() call. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments. Created 6 years, 7 months 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
« no previous file with comments | « remoting/host/it2me/it2me_host.cc ('k') | remoting/protocol/connection_to_host.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_CLIENT_H_ 5 #ifndef REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_
6 #define REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ 6 #define REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/synchronization/lock.h" 13 #include "base/synchronization/lock.h"
14 #include "base/threading/non_thread_safe.h" 14 #include "base/threading/non_thread_safe.h"
15 #include "remoting/protocol/audio_writer.h" 15 #include "remoting/protocol/audio_writer.h"
16 #include "remoting/protocol/session.h" 16 #include "remoting/protocol/session.h"
17 #include "remoting/protocol/video_writer.h" 17 #include "remoting/protocol/video_writer.h"
18 18
19 namespace net {
20 class IPEndPoint;
21 } // namespace net
22
23 namespace remoting { 19 namespace remoting {
24 namespace protocol { 20 namespace protocol {
25 21
26 class ClientStub; 22 class ClientStub;
27 class ClipboardStub; 23 class ClipboardStub;
28 class HostStub; 24 class HostStub;
29 class InputStub; 25 class InputStub;
30 class HostControlDispatcher; 26 class HostControlDispatcher;
31 class HostEventDispatcher; 27 class HostEventDispatcher;
32 28
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 scoped_ptr<VideoWriter> video_writer_; 131 scoped_ptr<VideoWriter> video_writer_;
136 scoped_ptr<AudioWriter> audio_writer_; 132 scoped_ptr<AudioWriter> audio_writer_;
137 133
138 DISALLOW_COPY_AND_ASSIGN(ConnectionToClient); 134 DISALLOW_COPY_AND_ASSIGN(ConnectionToClient);
139 }; 135 };
140 136
141 } // namespace protocol 137 } // namespace protocol
142 } // namespace remoting 138 } // namespace remoting
143 139
144 #endif // REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_ 140 #endif // REMOTING_PROTOCOL_CONNECTION_TO_CLIENT_H_
OLDNEW
« no previous file with comments | « remoting/host/it2me/it2me_host.cc ('k') | remoting/protocol/connection_to_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698