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

Unified Diff: mojo/examples/apptest/example_apptest.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/dbus/dbus_external_service.h ('k') | mojo/examples/apptest/example_client_application.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/examples/apptest/example_apptest.cc
diff --git a/mojo/examples/apptest/example_apptest.cc b/mojo/examples/apptest/example_apptest.cc
index ed2119ecde8ec8c9bf3d4dccf72f6ccd1df69b85..ca3fda8c796fae27e6e5e19683acd91a69af7811 100644
--- a/mojo/examples/apptest/example_apptest.cc
+++ b/mojo/examples/apptest/example_apptest.cc
@@ -33,7 +33,7 @@ class ExampleServiceTest : public testing::Test {
example_service_.set_client(&example_client_);
}
- virtual ~ExampleServiceTest() MOJO_OVERRIDE {}
+ virtual ~ExampleServiceTest() override {}
protected:
ExampleServicePtr example_service_;
@@ -54,7 +54,7 @@ template <typename T>
struct SetAndQuit : public Callback<void()>::Runnable {
SetAndQuit(T* val, T result) : val_(val), result_(result) {}
virtual ~SetAndQuit() {}
- virtual void Run() const MOJO_OVERRIDE{
+ virtual void Run() const override {
*val_ = result_;
RunLoop::current()->Quit();
}
« no previous file with comments | « mojo/dbus/dbus_external_service.h ('k') | mojo/examples/apptest/example_client_application.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698