| 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();
|
| }
|
|
|