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

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

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_settings.h
===================================================================
--- jingle/notifier/communicator/login_settings.h (revision 69414)
+++ jingle/notifier/communicator/login_settings.h (working copy)
@@ -14,6 +14,7 @@
}
namespace net {
+class CertVerifier;
class HostPortPair;
class HostResolver;
}
@@ -31,6 +32,7 @@
LoginSettings(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);
@@ -45,6 +47,10 @@
return host_resolver_;
}
+ net::CertVerifier* cert_verifier() {
+ return cert_verifier_;
+ }
+
const ServerInformation* server_list() const {
return server_override_.get() ? server_override_.get() : server_list_.get();
}
@@ -72,6 +78,7 @@
bool try_ssltcp_first_;
net::HostResolver* host_resolver_;
+ net::CertVerifier* cert_verifier_;
agl 2010/12/17 16:22:01 likewise about the const pointer if you like them.
talk_base::scoped_array<ServerInformation> server_list_;
int server_count_;
// Used to handle redirects

Powered by Google App Engine
This is Rietveld 408576698