Chromium Code Reviews| 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 |