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

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

Issue 8351084: Remove old Authentication code that we don't use or need. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 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
« no previous file with comments | « remoting/protocol/client_message_dispatcher.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // Interface of a client that receives commands from a Chromoting host. 5 // Interface of a client that receives commands from a Chromoting host.
6 // 6 //
7 // This interface is responsible for a subset of control messages sent to 7 // This interface is responsible for a subset of control messages sent to
8 // the Chromoting client. 8 // the Chromoting client.
9 9
10 #ifndef REMOTING_PROTOCOL_CLIENT_STUB_H_ 10 #ifndef REMOTING_PROTOCOL_CLIENT_STUB_H_
11 #define REMOTING_PROTOCOL_CLIENT_STUB_H_ 11 #define REMOTING_PROTOCOL_CLIENT_STUB_H_
12 12
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "base/callback.h" 14 #include "base/callback.h"
15 15
16 namespace remoting { 16 namespace remoting {
17 namespace protocol { 17 namespace protocol {
18 18
19 class LocalLoginStatus;
20 class NotifyResolutionRequest;
21
22 class ClientStub { 19 class ClientStub {
23 public: 20 public:
24 ClientStub() {} 21 ClientStub() {}
25 virtual ~ClientStub() {} 22 virtual ~ClientStub() {}
26 23
27 virtual void BeginSessionResponse(const LocalLoginStatus* msg, 24 // Currently we don't use the control channel for anything. Add new
28 const base::Closure& done) = 0; 25 // message handlers here when necessary.
29 26
30 private: 27 private:
31 DISALLOW_COPY_AND_ASSIGN(ClientStub); 28 DISALLOW_COPY_AND_ASSIGN(ClientStub);
32 }; 29 };
33 30
34 } // namespace protocol 31 } // namespace protocol
35 } // namespace remoting 32 } // namespace remoting
36 33
37 #endif // REMOTING_PROTOCOL_CLIENT_STUB_H_ 34 #endif // REMOTING_PROTOCOL_CLIENT_STUB_H_
OLDNEW
« no previous file with comments | « remoting/protocol/client_message_dispatcher.cc ('k') | remoting/protocol/connection_to_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698