Index: net/socket/ssl_server_socket.h |
diff --git a/net/socket/ssl_server_socket.h b/net/socket/ssl_server_socket.h |
index ceb9c0a27a898f85e8d812611fc2c9da3cb58c96..1c3964a0214a05af30eb894bfbad582d2e91e009 100644 |
--- a/net/socket/ssl_server_socket.h |
+++ b/net/socket/ssl_server_socket.h |
@@ -48,8 +48,8 @@ NET_EXPORT void EnableSSLServerSockets(); |
// The returned SSLServerSocket takes ownership of |socket|. Stubbed versions |
// of CreateSSLServerSocket will delete |socket| and return NULL. |
// It takes a reference to |certificate|. |
-// The |key| and |ssl_config| parameters are copied. |key| cannot be const |
-// because the methods used to copy its contents are non-const. |
+// The |key| and |ssl_server_config| parameters are copied. |key| cannot be |
+// const because the methods used to copy its contents are non-const. |
// |
// The caller starts the SSL server handshake by calling Handshake on the |
// returned socket. |
@@ -57,7 +57,7 @@ NET_EXPORT scoped_ptr<SSLServerSocket> CreateSSLServerSocket( |
scoped_ptr<StreamSocket> socket, |
X509Certificate* certificate, |
crypto::RSAPrivateKey* key, |
- const SSLServerConfig& ssl_config); |
+ const SSLServerConfig& ssl_server_config); |
} // namespace net |