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

Side by Side Diff: remoting/client/chromoting_client.h

Issue 2538183002: remoting: Cleanup class/struct fwd declarations (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | remoting/client/gl_desktop.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 // ChromotingClient is the controller for the Client implementation. 5 // ChromotingClient is the controller for the Client implementation.
6 6
7 #ifndef REMOTING_CLIENT_CHROMOTING_CLIENT_H_ 7 #ifndef REMOTING_CLIENT_CHROMOTING_CLIENT_H_
8 #define REMOTING_CLIENT_CHROMOTING_CLIENT_H_ 8 #define REMOTING_CLIENT_CHROMOTING_CLIENT_H_
9 9
10 #include <memory> 10 #include <memory>
(...skipping 19 matching lines...) Expand all
30 30
31 namespace remoting { 31 namespace remoting {
32 32
33 namespace protocol { 33 namespace protocol {
34 class CandidateSessionConfig; 34 class CandidateSessionConfig;
35 class SessionManager; 35 class SessionManager;
36 class TransportContext; 36 class TransportContext;
37 class VideoRenderer; 37 class VideoRenderer;
38 } // namespace protocol 38 } // namespace protocol
39 39
40 class AudioDecodeScheduler;
41 class ClientContext; 40 class ClientContext;
42 class ClientUserInterface; 41 class ClientUserInterface;
43 class FrameConsumerProxy;
44 42
45 class ChromotingClient : public SignalStrategy::Listener, 43 class ChromotingClient : public SignalStrategy::Listener,
46 public protocol::ConnectionToHost::HostEventCallback, 44 public protocol::ConnectionToHost::HostEventCallback,
47 public protocol::ClientStub { 45 public protocol::ClientStub {
48 public: 46 public:
49 // |client_context|, |user_interface| and |video_renderer| must outlive the 47 // |client_context|, |user_interface| and |video_renderer| must outlive the
50 // client. |audio_consumer| may be null, in which case audio will not be 48 // client. |audio_consumer| may be null, in which case audio will not be
51 // requested. 49 // requested.
52 ChromotingClient(ClientContext* client_context, 50 ChromotingClient(ClientContext* client_context,
53 ClientUserInterface* user_interface, 51 ClientUserInterface* user_interface,
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 138
141 // True if |protocol::Capabilities| message has been received. 139 // True if |protocol::Capabilities| message has been received.
142 bool host_capabilities_received_ = false; 140 bool host_capabilities_received_ = false;
143 141
144 DISALLOW_COPY_AND_ASSIGN(ChromotingClient); 142 DISALLOW_COPY_AND_ASSIGN(ChromotingClient);
145 }; 143 };
146 144
147 } // namespace remoting 145 } // namespace remoting
148 146
149 #endif // REMOTING_CLIENT_CHROMOTING_CLIENT_H_ 147 #endif // REMOTING_CLIENT_CHROMOTING_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | remoting/client/gl_desktop.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698