Index: mojo/examples/apptest/example_service_impl.h |
diff --git a/mojo/examples/apptest/example_service_impl.h b/mojo/examples/apptest/example_service_impl.h |
index 727e30fb8fada9bce7f2f87397c051df25fbaedf..18537fae2210ed5734703daa94f2515ff64750ee 100644 |
--- a/mojo/examples/apptest/example_service_impl.h |
+++ b/mojo/examples/apptest/example_service_impl.h |
@@ -19,8 +19,8 @@ class ExampleServiceImpl : public InterfaceImpl<ExampleService> { |
private: |
// InterfaceImpl<ExampleService> overrides. |
- virtual void Ping(uint16_t ping_value) MOJO_OVERRIDE; |
- virtual void RunCallback(const Callback<void()>& callback) MOJO_OVERRIDE; |
+ virtual void Ping(uint16_t ping_value) override; |
+ virtual void RunCallback(const Callback<void()>& callback) override; |
MOJO_DISALLOW_COPY_AND_ASSIGN(ExampleServiceImpl); |
}; |