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

Unified Diff: mojo/public/c/system/tests/core_perftest.cc

Issue 617503003: Mojo: MOJO_OVERRIDE -> override in mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 6 years, 3 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/examples/wm_flow/wm/wm.cc ('k') | mojo/public/cpp/application/application_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/c/system/tests/core_perftest.cc
diff --git a/mojo/public/c/system/tests/core_perftest.cc b/mojo/public/c/system/tests/core_perftest.cc
index 868457b07da3b0865ade06fe87a37a6e43579e45..b9a811490cb3564b7bce4786d126841e0ae8070a 100644
--- a/mojo/public/c/system/tests/core_perftest.cc
+++ b/mojo/public/c/system/tests/core_perftest.cc
@@ -31,7 +31,7 @@ class MessagePipeWriterThread : public mojo::Thread {
: handle_(handle), num_bytes_(num_bytes), num_writes_(0) {}
virtual ~MessagePipeWriterThread() {}
- virtual void Run() MOJO_OVERRIDE {
+ virtual void Run() override {
char buffer[10000];
assert(num_bytes_ <= sizeof(buffer));
@@ -69,7 +69,7 @@ class MessagePipeReaderThread : public mojo::Thread {
: handle_(handle), num_reads_(0) {}
virtual ~MessagePipeReaderThread() {}
- virtual void Run() MOJO_OVERRIDE {
+ virtual void Run() override {
char buffer[10000];
for (;;) {
« no previous file with comments | « mojo/examples/wm_flow/wm/wm.cc ('k') | mojo/public/cpp/application/application_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698