| Index: mojo/package_manager/content_handler_unittest.cc
|
| diff --git a/mojo/package_manager/content_handler_unittest.cc b/mojo/package_manager/content_handler_unittest.cc
|
| index fa94a369b83c3ec53f932e4eeb779df739f03cb1..dfce5fcc06ac91a95501819d5455ff6921eea271 100644
|
| --- a/mojo/package_manager/content_handler_unittest.cc
|
| +++ b/mojo/package_manager/content_handler_unittest.cc
|
| @@ -75,9 +75,12 @@ class TestContentHandler : public ContentHandler, public ApplicationDelegate {
|
| : binding_(this, request.Pass()) {}
|
|
|
| // ContentHandler:
|
| - void StartApplication(InterfaceRequest<Application> application_request,
|
| - URLResponsePtr response) override {
|
| + void StartApplication(
|
| + InterfaceRequest<Application> application_request,
|
| + URLResponsePtr response,
|
| + const Callback<void()>& destruct_callback) override {
|
| apps_.push_back(new ApplicationImpl(this, application_request.Pass()));
|
| + destruct_callback.Run();
|
| }
|
|
|
| private:
|
|
|