| Index: shell/native_runner_unittest.cc
|
| diff --git a/shell/native_runner_unittest.cc b/shell/native_runner_unittest.cc
|
| index fe21447205ac0e6af879180e03ef29c08f00f553..6ab81aabb4a655d623de43adcf6c94738b0fe9dc 100644
|
| --- a/shell/native_runner_unittest.cc
|
| +++ b/shell/native_runner_unittest.cc
|
| @@ -88,10 +88,8 @@ TEST_F(NativeApplicationLoaderTest, DoesNotExist) {
|
| ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
|
| base::FilePath nonexistent_file(FILE_PATH_LITERAL("nonexistent.txt"));
|
| GURL url(FilePathToFileURL(temp_dir.path().Append(nonexistent_file)));
|
| - mojo::InterfaceRequest<mojo::ServiceProvider> services;
|
| - mojo::ServiceProviderPtr service_provider;
|
| - application_manager_.ConnectToApplication(
|
| - url, GURL(), services.Pass(), service_provider.Pass(), base::Closure());
|
| + application_manager_.ConnectToApplication(url, GURL(), nullptr,
|
| + base::Closure());
|
| EXPECT_FALSE(state_.runner_was_created);
|
| EXPECT_FALSE(state_.runner_was_started);
|
| EXPECT_FALSE(state_.runner_was_destroyed);
|
|
|