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

Unified Diff: content/browser/renderer_host/websocket_host.cc

Issue 616603004: Replacing the OVERRIDE with override and FINAL with final in content/browser/renderer_host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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/browser/renderer_host/websocket_dispatcher_host_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/websocket_host.cc
diff --git a/content/browser/renderer_host/websocket_host.cc b/content/browser/renderer_host/websocket_host.cc
index a8951a9f6a16ebec4628287468586c33c673cdc2..7749be8c27d2514c278ca88ad62402f78e81071f 100644
--- a/content/browser/renderer_host/websocket_host.cc
+++ b/content/browser/renderer_host/websocket_host.cc
@@ -95,25 +95,25 @@ class WebSocketEventHandler : public net::WebSocketEventInterface {
virtual ChannelState OnAddChannelResponse(
bool fail,
const std::string& selected_subprotocol,
- const std::string& extensions) OVERRIDE;
+ const std::string& extensions) override;
virtual ChannelState OnDataFrame(bool fin,
WebSocketMessageType type,
- const std::vector<char>& data) OVERRIDE;
- virtual ChannelState OnClosingHandshake() OVERRIDE;
- virtual ChannelState OnFlowControl(int64 quota) OVERRIDE;
+ const std::vector<char>& data) override;
+ virtual ChannelState OnClosingHandshake() override;
+ virtual ChannelState OnFlowControl(int64 quota) override;
virtual ChannelState OnDropChannel(bool was_clean,
uint16 code,
- const std::string& reason) OVERRIDE;
- virtual ChannelState OnFailChannel(const std::string& message) OVERRIDE;
+ const std::string& reason) override;
+ virtual ChannelState OnFailChannel(const std::string& message) override;
virtual ChannelState OnStartOpeningHandshake(
- scoped_ptr<net::WebSocketHandshakeRequestInfo> request) OVERRIDE;
+ scoped_ptr<net::WebSocketHandshakeRequestInfo> request) override;
virtual ChannelState OnFinishOpeningHandshake(
- scoped_ptr<net::WebSocketHandshakeResponseInfo> response) OVERRIDE;
+ scoped_ptr<net::WebSocketHandshakeResponseInfo> response) override;
virtual ChannelState OnSSLCertificateError(
scoped_ptr<net::WebSocketEventInterface::SSLErrorCallbacks> callbacks,
const GURL& url,
const net::SSLInfo& ssl_info,
- bool fatal) OVERRIDE;
+ bool fatal) override;
private:
class SSLErrorHandlerDelegate : public SSLErrorHandler::Delegate {
@@ -126,8 +126,8 @@ class WebSocketEventHandler : public net::WebSocketEventInterface {
// SSLErrorHandler::Delegate methods
virtual void CancelSSLRequest(int error,
- const net::SSLInfo* ssl_info) OVERRIDE;
- virtual void ContinueSSLRequest() OVERRIDE;
+ const net::SSLInfo* ssl_info) override;
+ virtual void ContinueSSLRequest() override;
private:
scoped_ptr<net::WebSocketEventInterface::SSLErrorCallbacks> callbacks_;
« no previous file with comments | « content/browser/renderer_host/websocket_dispatcher_host_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698