summaryrefslogtreecommitdiffstats
path: root/jingle/glue/fake_ssl_client_socket.h
diff options
context:
space:
mode:
authormohan.reddy <mohan.reddy@samsung.com>2014-10-06 19:35:24 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-07 02:35:44 +0000
commit239c9f3ca43aa341b8362c7c622c78e2347d2d60 (patch)
treee0b6a20e2d63c7c8b486acf52fe825b26d3560e7 /jingle/glue/fake_ssl_client_socket.h
parentddd55dea0267689338e02c4f83228ef4d6e04b4c (diff)
downloadchromium_src-239c9f3ca43aa341b8362c7c622c78e2347d2d60.zip
chromium_src-239c9f3ca43aa341b8362c7c622c78e2347d2d60.tar.gz
chromium_src-239c9f3ca43aa341b8362c7c622c78e2347d2d60.tar.bz2
Replacing the OVERRIDE with override and FINAL with final in jingle
This step is a giant search and replace for OVERRIDE and FINAL to replace them with their lowercase versions. BUG=417463 Review URL: https://codereview.chromium.org/628123002 Cr-Commit-Position: refs/heads/master@{#298335}
Diffstat (limited to 'jingle/glue/fake_ssl_client_socket.h')
-rw-r--r--jingle/glue/fake_ssl_client_socket.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/jingle/glue/fake_ssl_client_socket.h b/jingle/glue/fake_ssl_client_socket.h
index 41000f7..a27caa7 100644
--- a/jingle/glue/fake_ssl_client_socket.h
+++ b/jingle/glue/fake_ssl_client_socket.h
@@ -46,25 +46,25 @@ class FakeSSLClientSocket : public net::StreamSocket {
// net::StreamSocket implementation.
virtual int Read(net::IOBuffer* buf, int buf_len,
- const net::CompletionCallback& callback) OVERRIDE;
+ const net::CompletionCallback& callback) override;
virtual int Write(net::IOBuffer* buf, int buf_len,
- const net::CompletionCallback& callback) OVERRIDE;
- virtual int SetReceiveBufferSize(int32 size) OVERRIDE;
- virtual int SetSendBufferSize(int32 size) OVERRIDE;
- virtual int Connect(const net::CompletionCallback& callback) OVERRIDE;
- virtual void Disconnect() OVERRIDE;
- virtual bool IsConnected() const OVERRIDE;
- virtual bool IsConnectedAndIdle() const OVERRIDE;
- virtual int GetPeerAddress(net::IPEndPoint* address) const OVERRIDE;
- virtual int GetLocalAddress(net::IPEndPoint* address) const OVERRIDE;
- virtual const net::BoundNetLog& NetLog() const OVERRIDE;
- virtual void SetSubresourceSpeculation() OVERRIDE;
- virtual void SetOmniboxSpeculation() OVERRIDE;
- virtual bool WasEverUsed() const OVERRIDE;
- virtual bool UsingTCPFastOpen() const OVERRIDE;
- virtual bool WasNpnNegotiated() const OVERRIDE;
- virtual net::NextProto GetNegotiatedProtocol() const OVERRIDE;
- virtual bool GetSSLInfo(net::SSLInfo* ssl_info) OVERRIDE;
+ const net::CompletionCallback& callback) override;
+ virtual int SetReceiveBufferSize(int32 size) override;
+ virtual int SetSendBufferSize(int32 size) override;
+ virtual int Connect(const net::CompletionCallback& callback) override;
+ virtual void Disconnect() override;
+ virtual bool IsConnected() const override;
+ virtual bool IsConnectedAndIdle() const override;
+ virtual int GetPeerAddress(net::IPEndPoint* address) const override;
+ virtual int GetLocalAddress(net::IPEndPoint* address) const override;
+ virtual const net::BoundNetLog& NetLog() const override;
+ virtual void SetSubresourceSpeculation() override;
+ virtual void SetOmniboxSpeculation() override;
+ virtual bool WasEverUsed() const override;
+ virtual bool UsingTCPFastOpen() const override;
+ virtual bool WasNpnNegotiated() const override;
+ virtual net::NextProto GetNegotiatedProtocol() const override;
+ virtual bool GetSSLInfo(net::SSLInfo* ssl_info) override;
private:
enum HandshakeState {