Searched defs:notifier_options (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/components/invalidation/
H A Dinvalidation_service_util.cc17 notifier::NotifierOptions notifier_options; local
20 notifier_options.xmpp_host_port =
24 DVLOG(1) << "Using " << notifier_options.xmpp_host_port.ToString()
28 notifier_options.allow_insecure_connection =
30 DVLOG_IF(1, notifier_options.allow_insecure_connection)
33 return notifier_options;
H A Dnon_blocking_invalidator_unittest.cc42 notifier::NotifierOptions notifier_options; local
43 notifier_options.request_context_getter = request_context_getter_;
45 NonBlockingInvalidator::MakePushClientChannelCreator(notifier_options);
H A Dp2p_invalidation_service.cc11 #include "jingle/notifier/base/notifier_options.h"
26 notifier::NotifierOptions notifier_options = local
28 notifier_options.request_context_getter = request_context;
31 notifier::PushClient::CreateDefault(notifier_options),
H A Dnon_blocking_invalidator.cc305 const notifier::NotifierOptions& notifier_options) {
307 notifier_options);
304 MakePushClientChannelCreator( const notifier::NotifierOptions& notifier_options) argument
H A Dsync_system_resources.cc167 const notifier::NotifierOptions& notifier_options) {
169 notifier::PushClient::CreateDefaultOnIOThread(notifier_options));
166 CreatePushClientChannel( const notifier::NotifierOptions& notifier_options) argument
/external/chromium_org/jingle/notifier/listener/
H A Dpush_client.cc21 const NotifierOptions& notifier_options) {
22 return scoped_ptr<PushClient>(new XmppPushClient(notifier_options));
28 const NotifierOptions& notifier_options) {
30 notifier_options.request_context_getter->GetNetworkTaskRunner(),
31 base::Bind(&CreateXmppPushClient, notifier_options)));
35 const NotifierOptions& notifier_options) {
36 CHECK(notifier_options.request_context_getter->GetNetworkTaskRunner()->
38 return CreateXmppPushClient(notifier_options);
20 CreateXmppPushClient( const NotifierOptions& notifier_options) argument
27 CreateDefault( const NotifierOptions& notifier_options) argument
34 CreateDefaultOnIOThread( const NotifierOptions& notifier_options) argument
H A Dxmpp_push_client.cc16 XmppPushClient::XmppPushClient(const NotifierOptions& notifier_options) argument
17 : notifier_options_(notifier_options) {
/external/chromium_org/jingle/notifier/base/
H A Dnotifier_options_util.cc9 #include "jingle/notifier/base/notifier_options.h"
16 const NotifierOptions& notifier_options,
27 xmpp_client_settings.set_auth_token(notifier_options.auth_mechanism,
28 notifier_options.invalidate_xmpp_login ?
30 if (notifier_options.auth_mechanism == buzz::AUTH_MECHANISM_OAUTH2)
34 if (notifier_options.allow_insecure_connection) {
42 const NotifierOptions& notifier_options) {
46 if (!notifier_options.xmpp_host_port.host().empty()) {
48 ServerInformation(notifier_options.xmpp_host_port,
15 MakeXmppClientSettings( const NotifierOptions& notifier_options, const std::string& email, const std::string& token) argument
41 GetServerList( const NotifierOptions& notifier_options) argument
/external/chromium_org/sync/tools/
H A Dsync_listen_notifications.cc20 #include "jingle/notifier/base/notifier_options.h"
116 notifier::NotifierOptions notifier_options; local
117 notifier_options.request_context_getter = request_context_getter;
120 notifier_options.xmpp_host_port =
123 LOG(INFO) << "Using " << notifier_options.xmpp_host_port.ToString()
127 notifier_options.try_ssltcp_first =
129 LOG_IF(INFO, notifier_options.try_ssltcp_first)
132 notifier_options.allow_insecure_connection =
134 LOG_IF(INFO, notifier_options.allow_insecure_connection)
137 return notifier_options;
180 const notifier::NotifierOptions& notifier_options = local
[all...]
H A Dsync_client.cc25 #include "jingle/notifier/base/notifier_options.h"
195 notifier::NotifierOptions notifier_options; local
196 notifier_options.request_context_getter = request_context_getter;
197 notifier_options.auth_mechanism = "X-OAUTH2";
200 notifier_options.xmpp_host_port =
203 LOG(INFO) << "Using " << notifier_options.xmpp_host_port.ToString()
207 notifier_options.try_ssltcp_first =
209 LOG_IF(INFO, notifier_options.try_ssltcp_first)
212 notifier_options.allow_insecure_connection =
214 LOG_IF(INFO, notifier_options
269 const notifier::NotifierOptions& notifier_options = local
[all...]
/external/chromium_org/chrome/service/cloud_print/
H A Dcloud_print_proxy_backend.cc28 #include "jingle/notifier/base/notifier_options.h"
339 notifier::NotifierOptions notifier_options; local
340 notifier_options.request_context_getter =
342 notifier_options.auth_mechanism = "X-OAUTH2";
343 notifier_options.try_ssltcp_first = true;
344 notifier_options.xmpp_host_port = net::HostPortPair::FromString(
347 push_client_ = notifier::PushClient::CreateDefault(notifier_options);

Completed in 277 milliseconds