| Index: examples/apptest/example_service_application.cc
|
| diff --git a/examples/apptest/example_service_application.cc b/examples/apptest/example_service_application.cc
|
| index de483b59b7e7c8e3078c47eeb5610ecef7c4015b..1e9a2971c53aad3e6dc3cb4162318279370b234b 100644
|
| --- a/examples/apptest/example_service_application.cc
|
| +++ b/examples/apptest/example_service_application.cc
|
| @@ -17,8 +17,8 @@ ExampleServiceApplication::ExampleServiceApplication() {}
|
| ExampleServiceApplication::~ExampleServiceApplication() {}
|
|
|
| bool ExampleServiceApplication::ConfigureIncomingConnection(
|
| - ApplicationConnection* connection) {
|
| - connection->GetServiceProviderImpl().AddService<ExampleService>(
|
| + ServiceProviderImpl* service_provider_impl) {
|
| + service_provider_impl->AddService<ExampleService>(
|
| [](const ConnectionContext& connection_context,
|
| InterfaceRequest<ExampleService> example_service_request) {
|
| // Not leaked: ExampleServiceImpl is strongly bound to the pipe.
|
|
|