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

Unified Diff: jingle/notifier/communicator/login_settings.cc

Issue 6649006: Added support for other authentication mechanisms in jingle. This will allow ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Review comments addressed Created 9 years, 9 months 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/notifier/communicator/login_settings.h ('k') | jingle/notifier/communicator/single_login_attempt.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/notifier/communicator/login_settings.cc
===================================================================
--- jingle/notifier/communicator/login_settings.cc (revision 77421)
+++ jingle/notifier/communicator/login_settings.cc (working copy)
@@ -22,14 +22,16 @@
net::CertVerifier* cert_verifier,
ServerInformation* server_list,
int server_count,
- bool try_ssltcp_first)
+ bool try_ssltcp_first,
+ const std::string& auth_mechanism)
: try_ssltcp_first_(try_ssltcp_first),
host_resolver_(host_resolver),
cert_verifier_(cert_verifier),
server_list_(new ServerInformation[server_count]),
server_count_(server_count),
user_settings_(new buzz::XmppClientSettings(user_settings)),
- connection_options_(new ConnectionOptions(options)) {
+ connection_options_(new ConnectionOptions(options)),
+ auth_mechanism_(auth_mechanism) {
// Note: firewall may be NULL.
DCHECK(server_list);
DCHECK(host_resolver);
« no previous file with comments | « jingle/notifier/communicator/login_settings.h ('k') | jingle/notifier/communicator/single_login_attempt.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698