Index: mojo/examples/png_viewer/png_viewer.cc |
diff --git a/mojo/examples/png_viewer/png_viewer.cc b/mojo/examples/png_viewer/png_viewer.cc |
index 4e0b6c7bc1cebe0d45d65c7df82d9946f0b6ef85..1e5604732208d48efe04e079f26fa1cad0610260 100644 |
--- a/mojo/examples/png_viewer/png_viewer.cc |
+++ b/mojo/examples/png_viewer/png_viewer.cc |
@@ -213,15 +213,15 @@ class PNGViewer : public ApplicationDelegate { |
PNGViewer() {} |
private: |
// Overridden from ApplicationDelegate: |
- virtual void Initialize(ApplicationImpl* app) MOJO_OVERRIDE { |
+ virtual void Initialize(ApplicationImpl* app) override { |
content_handler_factory_.reset( |
new InterfaceFactoryImplWithContext<ContentHandlerImpl, Shell>( |
app->shell())); |
} |
// Overridden from ApplicationDelegate: |
- virtual bool ConfigureIncomingConnection(ApplicationConnection* connection) |
- MOJO_OVERRIDE { |
+ virtual bool ConfigureIncomingConnection( |
+ ApplicationConnection* connection) override { |
connection->AddService(content_handler_factory_.get()); |
return true; |
} |