blob: a37e9e48f032c3b2f77edb226240acd26e1b826c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_HOST_HOST_STATUS_OBSERVER_H_
#define REMOTING_HOST_HOST_STATUS_OBSERVER_H_
#include <string>
#include "third_party/skia/include/core/SkRect.h"
namespace net {
class IPEndPoint;
} // namespace net
namespace remoting {
class SignalStrategy;
namespace protocol {
struct TransportRoute;
};
// Interface for host status observer. All methods are invoked on the
// network thread. Observers must not tear-down ChromotingHost state
// on receipt of these callbacks; they are purely informational.
class HostStatusObserver {
public:
HostStatusObserver() { }
virtual ~HostStatusObserver() { }
// Called when an unauthorized user attempts to connect to the host.
virtual void OnAccessDenied(const std::string& jid) {}
// A new client is authenticated.
virtual void OnClientAuthenticated(const std::string& jid) {}
// All channels for an autheticated client are connected.
virtual void OnClientConnected(const std::string& jid) {}
// An authenticated client is disconnected.
virtual void OnClientDisconnected(const std::string& jid) {}
// Called on notification of a route change event, when a channel is
// connected.
virtual void OnClientRouteChange(const std::string& jid,
const std::string& channel_name,
const protocol::TransportRoute& route) {}
// Called when the client view dimensions change.
virtual void OnClientDimensionsChanged(const std::string& jid,
const SkISize& size) {}
// Called when hosting is started for an account.
virtual void OnStart(const std::string& xmpp_login) {}
// Called when the host shuts down.
virtual void OnShutdown() {}
};
} // namespace remoting
#endif // REMOTING_HOST_HOST_STATUS_OBSERVER_H_
|