HomeSort by relevance Sort by last modified time
    Searched refs:notifier_options (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/jingle/notifier/listener/
push_client.cc 21 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);
push_client.h 28 const NotifierOptions& notifier_options);
32 // |notifier_options|).
34 const NotifierOptions& notifier_options);
xmpp_push_client.h 18 #include "jingle/notifier/base/notifier_options.h"
43 explicit XmppPushClient(const NotifierOptions& notifier_options);
xmpp_push_client.cc 16 XmppPushClient::XmppPushClient(const NotifierOptions& notifier_options)
17 : notifier_options_(notifier_options) {
  /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_org/jingle/notifier/base/
notifier_options_util.cc 9 #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,
notifier_options_util.h 21 const NotifierOptions& notifier_options,
24 ServerList GetServerList(const NotifierOptions& notifier_options);
  /external/chromium/chrome/browser/sync/notifier/
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...]
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,
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.cc 29 void Initialize(const notifier::NotifierOptions& notifier_options,
63 const notifier::NotifierOptions& notifier_options,
65 DCHECK(notifier_options.request_context_getter);
67 notifier_options.notification_method);
68 io_message_loop_proxy_ = notifier_options.request_context_getter->
72 new InvalidationNotifier(notifier_options, client_info));
133 const notifier::NotifierOptions& notifier_options,
138 io_message_loop_proxy_(notifier_options.request_context_getter->
145 notifier_options, client_info));
invalidation_notifier.cc 23 const notifier::NotifierOptions& notifier_options,
26 notifier_options_(notifier_options),
29 notifier_options.notification_method);
p2p_notifier.cc 22 const notifier::NotifierOptions& notifier_options)
25 new notifier::MediatorThreadImpl(notifier_options),
26 notifier_options)),
non_blocking_invalidation_notifier.h 17 #include "jingle/notifier/base/notifier_options.h"
28 const notifier::NotifierOptions& notifier_options,
p2p_notifier.h 35 explicit P2PNotifier(const notifier::NotifierOptions& notifier_options);
invalidation_notifier.h 27 #include "jingle/notifier/base/notifier_options.h"
40 const notifier::NotifierOptions& notifier_options,
  /external/chromium_org/sync/tools/
sync_listen_notifications.cc 19 #include "jingle/notifier/base/notifier_options.h"
117 notifier::NotifierOptions notifier_options; local
118 notifier_options.request_context_getter = request_context_getter;
121 notifier_options.xmpp_host_port =
124 LOG(INFO) << "Using " << notifier_options.xmpp_host_port.ToString()
128 notifier_options.try_ssltcp_first =
130 LOG_IF(INFO, notifier_options.try_ssltcp_first)
133 notifier_options.allow_insecure_connection =
135 LOG_IF(INFO, notifier_options.allow_insecure_connection)
138 return notifier_options;
181 const notifier::NotifierOptions& notifier_options = local
    [all...]
sync_client.cc 24 #include "jingle/notifier/base/notifier_options.h"
197 notifier::NotifierOptions notifier_options; local
198 notifier_options.request_context_getter = request_context_getter;
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)
218 return notifier_options;
270 const notifier::NotifierOptions& notifier_options = local
    [all...]
  /external/chromium_org/sync/notifier/
non_blocking_invalidator.cc 32 const notifier::NotifierOptions& notifier_options,
74 const notifier::NotifierOptions& notifier_options,
80 DCHECK(notifier_options.request_context_getter.get());
82 notifier_options.notification_method);
83 network_task_runner_ = notifier_options.request_context_getter->
88 notifier::PushClient::CreateDefaultOnIOThread(notifier_options),
137 const notifier::NotifierOptions& notifier_options,
149 network_task_runner_(notifier_options.request_context_getter->
156 notifier_options,
non_blocking_invalidator.h 17 #include "jingle/notifier/base/notifier_options.h"
40 const notifier::NotifierOptions& notifier_options,
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_proxy_backend.cc 27 #include "jingle/notifier/base/notifier_options.h"
329 notifier::NotifierOptions notifier_options; local
330 notifier_options.request_context_getter =
332 notifier_options.auth_mechanism = "X-OAUTH2";
333 notifier_options.try_ssltcp_first = true;
334 push_client_ = notifier::PushClient::CreateDefault(notifier_options);

Completed in 211 milliseconds