| Index: mojo/runner/native_runner_unittest.cc
|
| diff --git a/mojo/runner/native_runner_unittest.cc b/mojo/runner/native_runner_unittest.cc
|
| index 25f01a6208556c7886654d79f1dc34c070f1f4f2..e4a636d7b246bed0f616945dfca3de61ab61e429 100644
|
| --- a/mojo/runner/native_runner_unittest.cc
|
| +++ b/mojo/runner/native_runner_unittest.cc
|
| @@ -92,12 +92,15 @@
|
| GURL url(util::FilePathToFileURL(temp_dir.path().Append(nonexistent_file)));
|
| InterfaceRequest<ServiceProvider> services;
|
| ServiceProviderPtr service_provider;
|
| + mojo::URLRequestPtr request(mojo::URLRequest::New());
|
| + request->url = mojo::String::From(url.spec());
|
|
|
| scoped_ptr<shell::ConnectToApplicationParams> params(
|
| new shell::ConnectToApplicationParams);
|
| - params->SetTargetURL(url);
|
| + params->SetURLInfo(request.Pass());
|
| params->set_services(services.Pass());
|
| params->set_exposed_services(service_provider.Pass());
|
| + params->set_filter(shell::GetPermissiveCapabilityFilter());
|
| context_->application_manager()->ConnectToApplication(params.Pass());
|
| EXPECT_FALSE(state_.runner_was_created);
|
| EXPECT_FALSE(state_.runner_was_started);
|
|
|