OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ClientSession
(Results
1 - 25
of
31
) sorted by null
1
2
/external/chromium_org/remoting/host/
chromoting_host.h
66
public
ClientSession
::EventHandler,
122
//
ClientSession
::EventHandler implementation.
123
virtual void OnSessionAuthenticating(
ClientSession
* client) OVERRIDE;
124
virtual bool OnSessionAuthenticated(
ClientSession
* client) OVERRIDE;
125
virtual void OnSessionChannelsConnected(
ClientSession
* client) OVERRIDE;
126
virtual void OnSessionAuthenticationFailed(
ClientSession
* client) OVERRIDE;
127
virtual void OnSessionClosed(
ClientSession
* session) OVERRIDE;
129
ClientSession
* session,
164
typedef std::list<
ClientSession
*> ClientList;
client_session.cc
38
ClientSession
::
ClientSession
(
98
ClientSession
::~
ClientSession
() {
109
void
ClientSession
::NotifyClientResolution(
136
void
ClientSession
::ControlVideo(const protocol::VideoControl& video_control) {
164
void
ClientSession
::ControlAudio(const protocol::AudioControl& audio_control) {
175
void
ClientSession
::SetCapabilities(
201
void
ClientSession
::RequestPairing(
213
void
ClientSession
::DeliverClientMessage
[
all
...]
client_session.h
47
// A
ClientSession
keeps a reference to a connection to a client, and maintains
49
class
ClientSession
59
virtual void OnSessionAuthenticating(
ClientSession
* client) = 0;
63
virtual bool OnSessionAuthenticated(
ClientSession
* client) = 0;
66
virtual void OnSessionChannelsConnected(
ClientSession
* client) = 0;
71
virtual void OnSessionAuthenticationFailed(
ClientSession
* client) = 0;
74
virtual void OnSessionClosed(
ClientSession
* client) = 0;
79
ClientSession
* client,
89
ClientSession
(
102
virtual ~
ClientSession
();
[
all
...]
host_mock_objects.h
71
class MockClientSessionEventHandler : public
ClientSession
::EventHandler {
76
MOCK_METHOD1(OnSessionAuthenticating, void(
ClientSession
* client));
77
MOCK_METHOD1(OnSessionAuthenticated, bool(
ClientSession
* client));
78
MOCK_METHOD1(OnSessionChannelsConnected, void(
ClientSession
* client));
79
MOCK_METHOD1(OnSessionAuthenticationFailed, void(
ClientSession
* client));
80
MOCK_METHOD1(OnSessionClosed, void(
ClientSession
* client));
82
ClientSession
* client,
chromoting_host.cc
178
// protocol::
ClientSession
::EventHandler implementation.
179
void ChromotingHost::OnSessionAuthenticating(
ClientSession
* client) {
193
bool ChromotingHost::OnSessionAuthenticated(
ClientSession
* client) {
203
ClientSession
* other_client = *it++;
224
void ChromotingHost::OnSessionChannelsConnected(
ClientSession
* client) {
232
void ChromotingHost::OnSessionAuthenticationFailed(
ClientSession
* client) {
240
void ChromotingHost::OnSessionClosed(
ClientSession
* client) {
256
ClientSession
* session,
305
ClientSession
* client = new
ClientSession
(
[
all
...]
chromoting_host_unittest.cc
188
scoped_ptr<
ClientSession
> client(new
ClientSession
(
207
base::Bind(&
ClientSession
::OnConnectionAuthenticated,
212
base::Bind(&
ClientSession
::OnConnectionChannelsConnected,
217
FROM_HERE, base::Bind(&
ClientSession
::OnConnectionClosed,
421
ClientSession
* client1_;
430
ClientSession
* client2_;
453
ClientSession
*& get_client(int connection_index) {
458
std::list<
ClientSession
*>& get_clients_from_host() {
desktop_session_proxy.h
43
class
ClientSession
;
/external/chromium_org/remoting/webapp/
client_session.js
9
* The
ClientSession
class controls lifetime of the client plugin
51
* @param {remoting.
ClientSession
.Mode} mode The mode of this connection.
59
remoting.
ClientSession
= function(signalStrategy, container, hostDisplayName,
65
this.state_ = remoting.
ClientSession
.State.CREATED;
171
this.defineEvents(Object.keys(remoting.
ClientSession
.Events));
174
base.extend(remoting.
ClientSession
, base.EventSource);
177
remoting.
ClientSession
.Events = {
189
remoting.
ClientSession
.prototype.getHostDisplayName = function() {
200
remoting.
ClientSession
.prototype.updateScrollbarVisibility = function() {
235
remoting.
ClientSession
.prototype.getShrinkToFit = function()
[
all
...]
server_log_entry.js
42
* @param {remoting.
ClientSession
.State} state
47
case remoting.
ClientSession
.State.UNKNOWN:
49
case remoting.
ClientSession
.State.CREATED:
51
case remoting.
ClientSession
.State.CONNECTING:
53
case remoting.
ClientSession
.State.INITIALIZING:
55
case remoting.
ClientSession
.State.CONNECTED:
57
case remoting.
ClientSession
.State.CLOSED:
59
case remoting.
ClientSession
.State.FAILED:
61
case remoting.
ClientSession
.State.CONNECTION_DROPPED:
63
case remoting.
ClientSession
.State.CONNECTION_CANCELED
[
all
...]