| Index: services/dart/content_handler_main.cc
|
| diff --git a/services/dart/content_handler_main.cc b/services/dart/content_handler_main.cc
|
| index 84c2cf055b04404dabf4d8497acbb109b88d8980..bafeb2d5a720937c921c9fa1f1c8eaaf9e408f69 100644
|
| --- a/services/dart/content_handler_main.cc
|
| +++ b/services/dart/content_handler_main.cc
|
| @@ -42,9 +42,11 @@ class DartContentHandler : public mojo::ApplicationDelegate,
|
|
|
| // Overridden from ContentHandlerFactory::ManagedDelegate:
|
| scoped_ptr<mojo::ContentHandlerFactory::HandledApplicationHolder>
|
| - CreateApplication(mojo::ShellPtr shell,
|
| - mojo::URLResponsePtr response) override {
|
| - return make_scoped_ptr(new DartApp(shell.Pass(), response.Pass()));
|
| + CreateApplication(
|
| + mojo::InterfaceRequest<mojo::Application> application_request,
|
| + mojo::URLResponsePtr response) override {
|
| + return make_scoped_ptr(
|
| + new DartApp(application_request.Pass(), response.Pass()));
|
| }
|
|
|
| mojo::ContentHandlerFactory content_handler_factory_;
|
|
|