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

Unified Diff: remoting/protocol/client_stub.h

Issue 14715012: Protocol-level changes required to support PIN-less authentication. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed linter nit. Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/protocol/client_control_dispatcher.cc ('k') | remoting/protocol/host_control_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/client_stub.h
diff --git a/remoting/protocol/client_stub.h b/remoting/protocol/client_stub.h
index e3574481a17092b1c5f22fd344294b20e21c3db6..09a83c5aa76ef8227c29d217e5725ebae8de2622 100644
--- a/remoting/protocol/client_stub.h
+++ b/remoting/protocol/client_stub.h
@@ -18,6 +18,7 @@ namespace remoting {
namespace protocol {
class Capabilities;
+class PairingResponse;
class ClientStub : public ClipboardStub,
public CursorShapeStub {
@@ -28,6 +29,11 @@ class ClientStub : public ClipboardStub,
// Passes the set of capabilities supported by the host to the client.
virtual void SetCapabilities(const Capabilities& capabilities) = 0;
+ // Passes a pairing response message to the client.
+ // TODO(jamiewalch): Make this pure virtual once the PIN-less authentication
+ // implementation CLs have landed.
+ virtual void SetPairingResponse(const PairingResponse& pairing_response) {}
+
private:
DISALLOW_COPY_AND_ASSIGN(ClientStub);
};
« no previous file with comments | « remoting/protocol/client_control_dispatcher.cc ('k') | remoting/protocol/host_control_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698