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

Unified Diff: net/tools/flip_server/sm_connection.h

Issue 623213004: replace OVERRIDE and FINAL with override and final in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo unwanted change in comment 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 | « net/tools/flip_server/ring_buffer.h ('k') | net/tools/flip_server/spdy_interface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/flip_server/sm_connection.h
diff --git a/net/tools/flip_server/sm_connection.h b/net/tools/flip_server/sm_connection.h
index 2fe3228c0a1671e4378e45b765a80dad176b904a..5c5a5fddb54b30913dab7f9575019f63f0a68387 100644
--- a/net/tools/flip_server/sm_connection.h
+++ b/net/tools/flip_server/sm_connection.h
@@ -57,10 +57,10 @@ class SMConnection : public SMConnectionInterface,
std::string server_ip_;
std::string server_port_;
- virtual EpollServer* epoll_server() OVERRIDE;
+ virtual EpollServer* epoll_server() override;
OutputList* output_list() { return &output_list_; }
MemoryCache* memory_cache() { return memory_cache_; }
- virtual void ReadyToSend() OVERRIDE;
+ virtual void ReadyToSend() override;
void EnqueueDataFrame(DataFrame* df);
int fd() const { return fd_; }
@@ -84,14 +84,14 @@ class SMConnection : public SMConnectionInterface,
// EpollCallbackInterface interface.
virtual void OnRegistration(EpollServer* eps,
int fd,
- int event_mask) OVERRIDE;
- virtual void OnModification(int fd, int event_mask) OVERRIDE {}
- virtual void OnEvent(int fd, EpollEvent* event) OVERRIDE;
- virtual void OnUnregistration(int fd, bool replaced) OVERRIDE;
- virtual void OnShutdown(EpollServer* eps, int fd) OVERRIDE;
+ int event_mask) override;
+ virtual void OnModification(int fd, int event_mask) override {}
+ virtual void OnEvent(int fd, EpollEvent* event) override;
+ virtual void OnUnregistration(int fd, bool replaced) override;
+ virtual void OnShutdown(EpollServer* eps, int fd) override;
// NotifierInterface interface.
- virtual void Notify() OVERRIDE {}
+ virtual void Notify() override {}
void Cleanup(const char* cleanup);
« no previous file with comments | « net/tools/flip_server/ring_buffer.h ('k') | net/tools/flip_server/spdy_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698