Index: remoting/client/client_user_interface.h |
diff --git a/remoting/client/client_user_interface.h b/remoting/client/client_user_interface.h |
index 646c7c8ba26fb3abfb74ea70225178e74eb1153a..59460f17e2279043a45d6a445167de496daa77ab 100644 |
--- a/remoting/client/client_user_interface.h |
+++ b/remoting/client/client_user_interface.h |
@@ -5,7 +5,10 @@ |
#ifndef REMOTING_CLIENT_CLIENT_USER_INTERFACE_H_ |
#define REMOTING_CLIENT_CLIENT_USER_INTERFACE_H_ |
+#include <string> |
+ |
#include "base/basictypes.h" |
+#include "base/memory/scoped_ptr.h" |
#include "remoting/protocol/connection_to_host.h" |
#include "remoting/protocol/third_party_client_authenticator.h" |
@@ -30,6 +33,10 @@ class ClientUserInterface { |
protocol::ErrorCode error) = 0; |
virtual void OnConnectionReady(bool ready) = 0; |
+ // Passes the final set of capabilities negotiated between the client and host |
+ // to the application. |
+ virtual void SetCapabilities(const std::string& capabilities) = 0; |
+ |
// Get the view's ClipboardStub implementation. |
virtual protocol::ClipboardStub* GetClipboardStub() = 0; |