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

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

Issue 5958001: The MediatorThread worker thread needs to have a CertVerifier... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fix typos in xmpp_connection_unittest.cc Created 10 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
Index: jingle/notifier/communicator/login.cc
===================================================================
--- jingle/notifier/communicator/login.cc (revision 69414)
+++ jingle/notifier/communicator/login.cc (working copy)
@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "jingle/notifier/communicator/login.h"
+
#include <string>
-#include "jingle/notifier/communicator/login.h"
-
#include "base/logging.h"
#include "base/rand_util.h"
#include "base/time.h"
@@ -34,6 +34,7 @@
const buzz::XmppClientSettings& user_settings,
const ConnectionOptions& options,
net::HostResolver* host_resolver,
+ net::CertVerifier* cert_verifier,
ServerInformation* server_list,
int server_count,
bool try_ssltcp_first)
@@ -41,6 +42,7 @@
login_settings_(new LoginSettings(user_settings,
options,
host_resolver,
+ cert_verifier,
server_list,
server_count,
try_ssltcp_first)),

Powered by Google App Engine
This is Rietveld 408576698