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

Unified Diff: Source/web/WebSocketImpl.h

Issue 1230533002: Fix virtual/override/final usage in Source/web/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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
« no previous file with comments | « Source/web/WebSocketChannelClientProxy.h ('k') | Source/web/WebTextCheckingCompletionImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebSocketImpl.h
diff --git a/Source/web/WebSocketImpl.h b/Source/web/WebSocketImpl.h
index 55fcc26ce0043f1338bb8282a99a96338906119c..8ae7b8204585267bd989a3cfaf5429c839e22c80 100644
--- a/Source/web/WebSocketImpl.h
+++ b/Source/web/WebSocketImpl.h
@@ -50,21 +50,21 @@ class WebURL;
class WebSocketImpl final : public WebSocket {
public:
WebSocketImpl(const WebDocument&, WebSocketClient*);
- virtual ~WebSocketImpl();
+ ~WebSocketImpl() override;
bool isNull() const { return !m_private; }
- virtual BinaryType binaryType() const override;
- virtual bool setBinaryType(BinaryType) override;
- virtual void connect(const WebURL&, const WebString& protocol) override;
- virtual WebString subprotocol() override;
- virtual WebString extensions() override;
- virtual bool sendText(const WebString&) override;
- virtual bool sendArrayBuffer(const WebArrayBuffer&) override;
- virtual unsigned long bufferedAmount() const override;
- virtual void close(int code, const WebString& reason) override;
- virtual void fail(const WebString& reason) override;
- virtual void disconnect() override;
+ BinaryType binaryType() const override;
+ bool setBinaryType(BinaryType) override;
+ void connect(const WebURL&, const WebString& protocol) override;
+ WebString subprotocol() override;
+ WebString extensions() override;
+ bool sendText(const WebString&) override;
+ bool sendArrayBuffer(const WebArrayBuffer&) override;
+ unsigned long bufferedAmount() const override;
+ void close(int code, const WebString& reason) override;
+ void fail(const WebString& reason) override;
+ void disconnect() override;
// WebSocketChannelClient methods proxied by WebSocketChannelClientProxy.
void didConnect(const String& subprotocol, const String& extensions);
« no previous file with comments | « Source/web/WebSocketChannelClientProxy.h ('k') | Source/web/WebTextCheckingCompletionImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698