| Index: mojo/services/view_manager/public/cpp/tests/view_manager_unittest.cc
|
| diff --git a/mojo/services/view_manager/public/cpp/tests/view_manager_unittest.cc b/mojo/services/view_manager/public/cpp/tests/view_manager_unittest.cc
|
| index d9e4db80da6cabf4d072142e9e130431be242574..bc694646fd8a020ac2ef286432d8f9be0926b130 100644
|
| --- a/mojo/services/view_manager/public/cpp/tests/view_manager_unittest.cc
|
| +++ b/mojo/services/view_manager/public/cpp/tests/view_manager_unittest.cc
|
| @@ -63,11 +63,11 @@ class ConnectApplicationLoader : public ApplicationLoader,
|
| // Overridden from ApplicationLoader:
|
| void Load(ApplicationManager* manager,
|
| const GURL& url,
|
| - ScopedMessagePipeHandle shell_handle,
|
| + InterfaceRequest<Application> application_request,
|
| LoadCallback callback) override {
|
| - ASSERT_TRUE(shell_handle.is_valid());
|
| + ASSERT_TRUE(application_request.is_pending());
|
| scoped_ptr<ApplicationImpl> app(
|
| - new ApplicationImpl(this, shell_handle.Pass()));
|
| + new ApplicationImpl(this, application_request.Pass()));
|
| apps_.push_back(app.release());
|
| }
|
|
|
|
|