Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Unified Diff: jingle/notifier/base/notifier_options_util.cc

Issue 8802019: Roll libjingle to 98:99. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « jingle/glue/fake_network_manager.cc ('k') | remoting/jingle_glue/xmpp_signal_strategy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/notifier/base/notifier_options_util.cc
===================================================================
--- jingle/notifier/base/notifier_options_util.cc (revision 113003)
+++ jingle/notifier/base/notifier_options_util.cc (working copy)
@@ -23,14 +23,14 @@
xmpp_client_settings.set_user(jid.node());
xmpp_client_settings.set_resource("chrome-sync");
xmpp_client_settings.set_host(jid.domain());
- xmpp_client_settings.set_use_tls(true);
+ xmpp_client_settings.set_use_tls(buzz::TLS_ENABLED);
xmpp_client_settings.set_auth_cookie(
notifier_options.invalidate_xmpp_login ?
token + "bogus" : token);
xmpp_client_settings.set_token_service(token_service);
if (notifier_options.allow_insecure_connection) {
xmpp_client_settings.set_allow_plain(true);
- xmpp_client_settings.set_use_tls(false);
+ xmpp_client_settings.set_use_tls(buzz::TLS_DISABLED);
}
return xmpp_client_settings;
}
« no previous file with comments | « jingle/glue/fake_network_manager.cc ('k') | remoting/jingle_glue/xmpp_signal_strategy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698