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

Unified Diff: jingle/notifier/base/chrome_async_socket.h

Issue 6016001: Fix nits. Add 'const'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Don't make accessors const Created 9 years, 12 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
Index: jingle/notifier/base/chrome_async_socket.h
===================================================================
--- jingle/notifier/base/chrome_async_socket.h (revision 69550)
+++ jingle/notifier/base/chrome_async_socket.h (working copy)
@@ -35,7 +35,7 @@
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 @@
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.
« no previous file with comments | « chrome/browser/sync/tools/sync_listen_notifications.cc ('k') | jingle/notifier/communicator/login_settings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698