diff options
Diffstat (limited to 'remoting/host/host_status_observer.h')
-rw-r--r-- | remoting/host/host_status_observer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/remoting/host/host_status_observer.h b/remoting/host/host_status_observer.h index e7fda0b..f38775a 100644 --- a/remoting/host/host_status_observer.h +++ b/remoting/host/host_status_observer.h @@ -19,6 +19,10 @@ class HostStatusObserver { const std::string& full_jid) = 0; virtual void OnSignallingDisconnected() = 0; + // Called on the network thread when an unauthorized user attempts + // to connect to the host. + virtual void OnAccessDenied() = 0; + // Called on the main thread when the host shuts down. virtual void OnShutdown() = 0; }; |