diff options
Diffstat (limited to 'remoting/protocol/client_stub.h')
-rw-r--r-- | remoting/protocol/client_stub.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/remoting/protocol/client_stub.h b/remoting/protocol/client_stub.h index e357448..09a83c5 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); }; |