| Index: mojo/examples/nesting_app/nesting_app.cc
|
| diff --git a/mojo/examples/nesting_app/nesting_app.cc b/mojo/examples/nesting_app/nesting_app.cc
|
| index 46449f11ff4a574671b17d65bc241b3bc075a57f..27687f34721ada0277885fd5116a6c152f0d89d7 100644
|
| --- a/mojo/examples/nesting_app/nesting_app.cc
|
| +++ b/mojo/examples/nesting_app/nesting_app.cc
|
| @@ -42,14 +42,14 @@ class NestingApp
|
|
|
| private:
|
| // Overridden from ApplicationDelegate:
|
| - virtual void Initialize(ApplicationImpl* app) MOJO_OVERRIDE {
|
| + virtual void Initialize(ApplicationImpl* app) override {
|
| view_manager_client_factory_.reset(
|
| new ViewManagerClientFactory(app->shell(), this));
|
| }
|
|
|
| // Overridden from ApplicationImpl:
|
| - virtual bool ConfigureIncomingConnection(ApplicationConnection* connection)
|
| - MOJO_OVERRIDE {
|
| + virtual bool ConfigureIncomingConnection(
|
| + ApplicationConnection* connection) override {
|
| connection->ConnectToService(&window_manager_);
|
| connection->AddService(view_manager_client_factory_.get());
|
| return true;
|
|
|