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

Unified Diff: mojo/services/network/web_socket_impl.h

Issue 634483003: replace OVERRIDE and FINAL with override and final in mojo/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove compiler_specific.h inclusions 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 | « mojo/services/network/url_loader_impl.cc ('k') | mojo/services/network/web_socket_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/network/web_socket_impl.h
diff --git a/mojo/services/network/web_socket_impl.h b/mojo/services/network/web_socket_impl.h
index bd8a27d3cbd13c539b3417b90622b7740e493b17..31855df5875cda3f1c68c525633a5dd182777544 100644
--- a/mojo/services/network/web_socket_impl.h
+++ b/mojo/services/network/web_socket_impl.h
@@ -5,7 +5,6 @@
#ifndef MOJO_SERVICES_NETWORK_WEB_SOCKET_IMPL_H_
#define MOJO_SERVICES_NETWORK_WEB_SOCKET_IMPL_H_
-#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
#include "mojo/public/cpp/bindings/interface_impl.h"
#include "mojo/services/public/interfaces/network/web_socket.mojom.h"
@@ -31,12 +30,12 @@ class WebSocketImpl : public InterfaceImpl<WebSocket> {
Array<String> protocols,
const String& origin,
ScopedDataPipeConsumerHandle send_stream,
- WebSocketClientPtr client) OVERRIDE;
+ WebSocketClientPtr client) override;
virtual void Send(bool fin,
WebSocket::MessageType type,
- uint32_t num_bytes) OVERRIDE;
- virtual void FlowControl(int64_t quota) OVERRIDE;
- virtual void Close(uint16_t code, const String& reason) OVERRIDE;
+ uint32_t num_bytes) override;
+ virtual void FlowControl(int64_t quota) override;
+ virtual void Close(uint16_t code, const String& reason) override;
// Called with the data to send once it has been read from |send_stream_|.
void DidReadFromSendStream(bool fin,
« no previous file with comments | « mojo/services/network/url_loader_impl.cc ('k') | mojo/services/network/web_socket_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698