| Index: services/dart/content_handler_app_service_connector.cc
|
| diff --git a/services/dart/content_handler_app_service_connector.cc b/services/dart/content_handler_app_service_connector.cc
|
| index f1b0c8759c0b68370edec30f33685bc0b12d3827..38233cc76f26b918bed88b9c5297ce9175c0d3d4 100644
|
| --- a/services/dart/content_handler_app_service_connector.cc
|
| +++ b/services/dart/content_handler_app_service_connector.cc
|
| @@ -54,7 +54,7 @@ MojoHandle ContentHandlerAppServiceConnector::ConnectToService(
|
| application_name,
|
| base::Passed(GetProxy(&interface_ptr))));
|
| // Return proxy end of pipe to caller.
|
| - return interface_ptr.PassInterface().PassHandle().release().value();
|
| + return interface_ptr.PassInterfaceHandle().PassHandle().release().value();
|
| }
|
| case mojo::dart::DartControllerServiceConnector::kFilesServiceId: {
|
| std::string application_name = "mojo:files";
|
| @@ -65,7 +65,7 @@ MojoHandle ContentHandlerAppServiceConnector::ConnectToService(
|
| weak_ptr_factory_.GetWeakPtr(),
|
| application_name,
|
| base::Passed(GetProxy(&interface_ptr))));
|
| - return interface_ptr.PassInterface().PassHandle().release().value();
|
| + return interface_ptr.PassInterfaceHandle().PassHandle().release().value();
|
| }
|
| break;
|
| default:
|
|
|