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

Unified Diff: content/child/websocket_bridge.h

Issue 630743005: Replace OVERRIDE and FINAL with override and final in content/child/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « content/child/webmessageportchannel_impl.h ('k') | content/child/websocket_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/websocket_bridge.h
diff --git a/content/child/websocket_bridge.h b/content/child/websocket_bridge.h
index b606a74dd159166605a23c2dfeb4e82699cddbf7..0fe5ae29466c2fe5786c81e935a81a8b963d17d5 100644
--- a/content/child/websocket_bridge.h
+++ b/content/child/websocket_bridge.h
@@ -34,14 +34,14 @@ class WebSocketBridge : public blink::WebSocketHandle {
virtual void connect(const blink::WebURL& url,
const blink::WebVector<blink::WebString>& protocols,
const blink::WebSerializedOrigin& origin,
- blink::WebSocketHandleClient* client) OVERRIDE;
+ blink::WebSocketHandleClient* client) override;
virtual void send(bool fin,
WebSocketHandle::MessageType type,
const char* data,
- size_t size) OVERRIDE;
- virtual void flowControl(int64_t quota) OVERRIDE;
+ size_t size) override;
+ virtual void flowControl(int64_t quota) override;
virtual void close(unsigned short code,
- const blink::WebString& reason) OVERRIDE;
+ const blink::WebString& reason) override;
virtual void Disconnect();
« no previous file with comments | « content/child/webmessageportchannel_impl.h ('k') | content/child/websocket_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698