Index: net/socket/ssl_client_socket_nss.h |
diff --git a/net/socket/ssl_client_socket_nss.h b/net/socket/ssl_client_socket_nss.h |
index ccdbb817269802a3c5ecbae6c240de492d2ad2a7..0693ee8bae56f236b5f84f59a4811b5d5a8a3615 100644 |
--- a/net/socket/ssl_client_socket_nss.h |
+++ b/net/socket/ssl_client_socket_nss.h |
@@ -65,53 +65,51 @@ class SSLClientSocketNSS : public SSLClientSocket { |
const HostPortPair& host_and_port, |
const SSLConfig& ssl_config, |
const SSLClientSocketContext& context); |
- virtual ~SSLClientSocketNSS(); |
+ ~SSLClientSocketNSS() override; |
// SSLClientSocket implementation. |
- virtual std::string GetSessionCacheKey() const override; |
- virtual bool InSessionCache() const override; |
- virtual void SetHandshakeCompletionCallback( |
- const base::Closure& callback) override; |
- virtual void GetSSLCertRequestInfo( |
- SSLCertRequestInfo* cert_request_info) override; |
- virtual NextProtoStatus GetNextProto(std::string* proto) override; |
+ std::string GetSessionCacheKey() const override; |
+ bool InSessionCache() const override; |
+ void SetHandshakeCompletionCallback(const base::Closure& callback) override; |
+ void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info) override; |
+ NextProtoStatus GetNextProto(std::string* proto) override; |
// SSLSocket implementation. |
- virtual int ExportKeyingMaterial(const base::StringPiece& label, |
- bool has_context, |
- const base::StringPiece& context, |
- unsigned char* out, |
- unsigned int outlen) override; |
- virtual int GetTLSUniqueChannelBinding(std::string* out) override; |
+ int ExportKeyingMaterial(const base::StringPiece& label, |
+ bool has_context, |
+ const base::StringPiece& context, |
+ unsigned char* out, |
+ unsigned int outlen) override; |
+ int GetTLSUniqueChannelBinding(std::string* out) override; |
// StreamSocket implementation. |
- virtual int Connect(const CompletionCallback& callback) override; |
- virtual void Disconnect() override; |
- virtual bool IsConnected() const override; |
- virtual bool IsConnectedAndIdle() const override; |
- virtual int GetPeerAddress(IPEndPoint* address) const override; |
- virtual int GetLocalAddress(IPEndPoint* address) const override; |
- virtual const BoundNetLog& NetLog() const override; |
- virtual void SetSubresourceSpeculation() override; |
- virtual void SetOmniboxSpeculation() override; |
- virtual bool WasEverUsed() const override; |
- virtual bool UsingTCPFastOpen() const override; |
- virtual bool GetSSLInfo(SSLInfo* ssl_info) override; |
+ int Connect(const CompletionCallback& callback) override; |
+ void Disconnect() override; |
+ bool IsConnected() const override; |
+ bool IsConnectedAndIdle() const override; |
+ int GetPeerAddress(IPEndPoint* address) const override; |
+ int GetLocalAddress(IPEndPoint* address) const override; |
+ const BoundNetLog& NetLog() const override; |
+ void SetSubresourceSpeculation() override; |
+ void SetOmniboxSpeculation() override; |
+ bool WasEverUsed() const override; |
+ bool UsingTCPFastOpen() const override; |
+ bool GetSSLInfo(SSLInfo* ssl_info) override; |
// Socket implementation. |
- virtual int Read(IOBuffer* buf, |
- int buf_len, |
- const CompletionCallback& callback) override; |
- virtual int Write(IOBuffer* buf, |
- int buf_len, |
- const CompletionCallback& callback) override; |
- virtual int SetReceiveBufferSize(int32 size) override; |
- virtual int SetSendBufferSize(int32 size) override; |
- virtual ChannelIDService* GetChannelIDService() const override; |
+ int Read(IOBuffer* buf, |
+ int buf_len, |
+ const CompletionCallback& callback) override; |
+ int Write(IOBuffer* buf, |
+ int buf_len, |
+ const CompletionCallback& callback) override; |
+ int SetReceiveBufferSize(int32 size) override; |
+ int SetSendBufferSize(int32 size) override; |
+ ChannelIDService* GetChannelIDService() const override; |
protected: |
// SSLClientSocket implementation. |
- virtual scoped_refptr<X509Certificate> GetUnverifiedServerCertificateChain() |
+ scoped_refptr<X509Certificate> GetUnverifiedServerCertificateChain() |
const override; |
private: |