OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PubSubStateClient
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
pubsubstateclient.h
104
class
PubSubStateClient
: public sigslot::has_slots<> {
107
PubSubStateClient
(const std::string& publisher_nick,
120
this, &
PubSubStateClient
<C>::OnItems);
122
this, &
PubSubStateClient
<C>::OnPublishResult);
124
this, &
PubSubStateClient
<C>::OnPublishError);
126
this, &
PubSubStateClient
<C>::OnRetractResult);
128
this, &
PubSubStateClient
<C>::OnRetractError);
131
virtual ~
PubSubStateClient
() {}
283
DISALLOW_COPY_AND_ASSIGN(
PubSubStateClient
);
hangoutpubsubclient.h
37
#include "talk/xmpp/
pubsubstateclient
.h"
185
rtc::scoped_ptr<
PubSubStateClient
<bool> > presenter_state_client_;
186
rtc::scoped_ptr<
PubSubStateClient
<bool> > audio_mute_state_client_;
187
rtc::scoped_ptr<
PubSubStateClient
<bool> > video_mute_state_client_;
188
rtc::scoped_ptr<
PubSubStateClient
<bool> > video_pause_state_client_;
189
rtc::scoped_ptr<
PubSubStateClient
<bool> > recording_state_client_;
190
rtc::scoped_ptr<
PubSubStateClient
<bool> > media_block_state_client_;
hangoutpubsubclient.cc
64
class PresenterStateClient : public
PubSubStateClient
<bool> {
70
:
PubSubStateClient
<bool>(
144
audio_mute_state_client_.reset(new
PubSubStateClient
<bool>(
155
video_mute_state_client_.reset(new
PubSubStateClient
<bool>(
166
video_pause_state_client_.reset(new
PubSubStateClient
<bool>(
176
recording_state_client_.reset(new
PubSubStateClient
<bool>(
186
media_block_state_client_.reset(new
PubSubStateClient
<bool>(
Completed in 28 milliseconds