/external/chromium_org/chrome/browser/invalidation/ |
invalidation_service_util.cc | 17 notifier::NotifierOptions notifier_options; local 20 notifier_options.xmpp_host_port = 24 DVLOG(1) << "Using " << notifier_options.xmpp_host_port.ToString() 28 notifier_options.try_ssltcp_first = 30 DVLOG_IF(1, notifier_options.try_ssltcp_first) 33 notifier_options.invalidate_xmpp_login = 35 DVLOG_IF(1, notifier_options.invalidate_xmpp_login) 38 notifier_options.allow_insecure_connection = 40 DVLOG_IF(1, notifier_options.allow_insecure_connection) 43 return notifier_options; [all...] |
p2p_invalidation_service.cc | 11 #include "jingle/notifier/base/notifier_options.h" 22 notifier::NotifierOptions notifier_options = local 24 notifier_options.request_context_getter = profile->GetRequestContext(); 27 notifier::PushClient::CreateDefault(notifier_options),
|
/external/chromium/chrome/browser/sync/notifier/ |
invalidation_notifier_unittest.cc | 34 notifier::NotifierOptions notifier_options; local 35 notifier_options.request_context_getter = request_context_getter_; 36 invalidation_notifier_.reset(new InvalidationNotifier(notifier_options,
|
non_blocking_invalidation_notifier_unittest.cc | 33 notifier::NotifierOptions notifier_options; local 34 notifier_options.request_context_getter = request_context_getter_; 36 new NonBlockingInvalidationNotifier(notifier_options,
|
sync_notifier_factory.cc | 17 #include "jingle/notifier/base/notifier_options.h" 51 notifier::NotifierOptions notifier_options; local 52 notifier_options.request_context_getter = request_context_getter; 59 notifier_options.xmpp_host_port = 62 VLOG(1) << "Using " << notifier_options.xmpp_host_port.ToString() 66 notifier_options.try_ssltcp_first = 68 if (notifier_options.try_ssltcp_first) 71 notifier_options.invalidate_xmpp_login = 73 if (notifier_options.invalidate_xmpp_login) { 77 notifier_options.allow_insecure_connection [all...] |
/external/chromium_org/sync/tools/ |
sync_listen_notifications.cc | 19 #include "jingle/notifier/base/notifier_options.h" 112 notifier::NotifierOptions notifier_options; local 113 notifier_options.request_context_getter = request_context_getter; 116 notifier_options.xmpp_host_port = 119 LOG(INFO) << "Using " << notifier_options.xmpp_host_port.ToString() 123 notifier_options.try_ssltcp_first = 125 LOG_IF(INFO, notifier_options.try_ssltcp_first) 128 notifier_options.allow_insecure_connection = 130 LOG_IF(INFO, notifier_options.allow_insecure_connection) 133 return notifier_options; 176 const notifier::NotifierOptions& notifier_options = local [all...] |
sync_client.cc | 24 #include "jingle/notifier/base/notifier_options.h" 196 notifier::NotifierOptions notifier_options; local 197 notifier_options.request_context_getter = request_context_getter; 198 notifier_options.auth_mechanism = "X-OAUTH2"; 201 notifier_options.xmpp_host_port = 204 LOG(INFO) << "Using " << notifier_options.xmpp_host_port.ToString() 208 notifier_options.try_ssltcp_first = 210 LOG_IF(INFO, notifier_options.try_ssltcp_first) 213 notifier_options.allow_insecure_connection = 215 LOG_IF(INFO, notifier_options.allow_insecure_connection 270 const notifier::NotifierOptions& notifier_options = local [all...] |
/external/chromium_org/chrome/service/cloud_print/ |
cloud_print_proxy_backend.cc | 28 #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 push_client_ = notifier::PushClient::CreateDefault(notifier_options);
|