0

Fix nits. Add 'const'.

R=akalin
BUG=63357,67239
TEST=no compliation errors.
Review URL: http://codereview.chromium.org/6016001

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70445 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
wtc@google.com
2011-01-04 21:17:39 +00:00
parent 34ced0bfc5
commit a768ba3242
3 changed files with 4 additions and 5 deletions
chrome/browser/sync/tools
jingle/notifier

@ -299,7 +299,6 @@ int main(int argc, char* argv[]) {
xmpp_client_settings.set_server(addr);
net::CertVerifier cert_verifier;
MessageLoopForIO message_loop;
// Connect and listen.

@ -35,7 +35,7 @@ namespace notifier {
class ChromeAsyncSocket : public buzz::AsyncSocket {
public:
// Takes ownership of |client_socket_factory| but not |cert_verifier| and
// Takes ownership of |client_socket_factory| but not |cert_verifier| nor
// |net_log|. |cert_verifier| may not be NULL. |net_log| may be NULL.
ChromeAsyncSocket(net::ClientSocketFactory* client_socket_factory,
const net::SSLConfig& ssl_config,
@ -189,7 +189,7 @@ class ChromeAsyncSocket : public buzz::AsyncSocket {
scoped_ptr<net::ClientSocketFactory> client_socket_factory_;
const net::SSLConfig ssl_config_;
net::CertVerifier* cert_verifier_;
net::CertVerifier* const cert_verifier_;
net::BoundNetLog bound_net_log_;
// buzz::AsyncSocket state.

@ -77,8 +77,8 @@ class LoginSettings {
private:
bool try_ssltcp_first_;
net::HostResolver* host_resolver_;
net::CertVerifier* cert_verifier_;
net::HostResolver* const host_resolver_;
net::CertVerifier* const cert_verifier_;
talk_base::scoped_array<ServerInformation> server_list_;
int server_count_;
// Used to handle redirects