| Index: net/socket/ssl_client_socket_openssl.h
|
| diff --git a/net/socket/ssl_client_socket_openssl.h b/net/socket/ssl_client_socket_openssl.h
|
| index 8ea22661f5f74381335d6e6fdb3959b253541404..4cd9c716b7d3b761693a17ce61dc3de8e7d2a82b 100644
|
| --- a/net/socket/ssl_client_socket_openssl.h
|
| +++ b/net/socket/ssl_client_socket_openssl.h
|
| @@ -85,9 +85,11 @@ class SSLClientSocketOpenSSL : public SSLClientSocket {
|
| virtual bool GetSSLInfo(SSLInfo* ssl_info) OVERRIDE;
|
|
|
| // Socket implementation.
|
| - virtual int Read(IOBuffer* buf, int buf_len,
|
| + virtual int Read(IOBuffer* buf,
|
| + int buf_len,
|
| const CompletionCallback& callback) OVERRIDE;
|
| - virtual int Write(IOBuffer* buf, int buf_len,
|
| + virtual int Write(IOBuffer* buf,
|
| + int buf_len,
|
| const CompletionCallback& callback) OVERRIDE;
|
| virtual int SetReceiveBufferSize(int32 size) OVERRIDE;
|
| virtual int SetSendBufferSize(int32 size) OVERRIDE;
|
| @@ -142,11 +144,13 @@ class SSLClientSocketOpenSSL : public SSLClientSocket {
|
| // CertVerifyCallback is called to verify the server's certificates. We do
|
| // verification after the handshake so this function only enforces that the
|
| // certificates don't change during renegotiation.
|
| - int CertVerifyCallback(X509_STORE_CTX *store_ctx);
|
| + int CertVerifyCallback(X509_STORE_CTX* store_ctx);
|
|
|
| // Callback from the SSL layer to check which NPN protocol we are supporting
|
| - int SelectNextProtoCallback(unsigned char** out, unsigned char* outlen,
|
| - const unsigned char* in, unsigned int inlen);
|
| + int SelectNextProtoCallback(unsigned char** out,
|
| + unsigned char* outlen,
|
| + const unsigned char* in,
|
| + unsigned int inlen);
|
|
|
| bool transport_send_busy_;
|
| bool transport_recv_busy_;
|
|
|