Index: remoting/protocol/host_stub.h |
diff --git a/remoting/protocol/host_stub.h b/remoting/protocol/host_stub.h |
index 1a26225847e40e83772421d1198639bbcaf9f123..66f76c16a9501a36426b0f6b7a90582d350a1325 100644 |
--- a/remoting/protocol/host_stub.h |
+++ b/remoting/protocol/host_stub.h |
@@ -4,7 +4,7 @@ |
// Interface of a host that receives commands from a Chromoting client. |
// |
-// This interterface handles control messages defined in contro.proto. |
+// This interface handles control messages defined in contro.proto. |
#ifndef REMOTING_PROTOCOL_HOST_STUB_H_ |
#define REMOTING_PROTOCOL_HOST_STUB_H_ |
@@ -21,15 +21,30 @@ class LocalLoginCredentials; |
class HostStub { |
public: |
- HostStub() {} |
- virtual ~HostStub() {}; |
+ HostStub(); |
+ virtual ~HostStub(); |
virtual void SuggestResolution( |
const SuggestResolutionRequest* msg, Task* done) = 0; |
virtual void BeginSessionRequest( |
const LocalLoginCredentials* credentials, Task* done) = 0; |
+ // Enable the client->host control channel. |
+ // This should be set to true only after a trusted communication channel has |
+ // been established. |
+ // When this is false, only a limited set of control messages will be |
+ // processed. |
+ void SetEnabled(bool enabled); |
+ |
+ // Is the control channel enabled? |
+ // I.e., should we be processing control events? |
Wez
2011/03/04 12:09:38
As HostStub
garykac
2011/03/04 20:28:02
Done.
|
+ bool enabled(); |
+ |
private: |
+ // Initially false, this controls whether the control events received from the |
+ // client should be processed. |
+ bool enabled_; |
+ |
Wez
2011/03/04 12:09:38
As HostStub.
garykac
2011/03/04 20:28:02
Done.
|
DISALLOW_COPY_AND_ASSIGN(HostStub); |
}; |