| Index: mojo/public/cpp/bindings/tests/versioning_test_service.cc
|
| diff --git a/mojo/public/cpp/bindings/tests/versioning_test_service.cc b/mojo/public/cpp/bindings/tests/versioning_test_service.cc
|
| index f8158899c4dfed3cd7436fdbff51fa0f053f4c34..3474dd92a49b8f0821207fb73ede8b11fbad368e 100644
|
| --- a/mojo/public/cpp/bindings/tests/versioning_test_service.cc
|
| +++ b/mojo/public/cpp/bindings/tests/versioning_test_service.cc
|
| @@ -97,8 +97,9 @@ class HumanResourceSystemServer : public ApplicationDelegate {
|
| HumanResourceSystemServer() {}
|
|
|
| // ApplicationDelegate implementation.
|
| - bool ConfigureIncomingConnection(ApplicationConnection* connection) override {
|
| - connection->GetServiceProviderImpl().AddService<HumanResourceDatabase>(
|
| + bool ConfigureIncomingConnection(
|
| + ServiceProviderImpl* service_provider_impl) override {
|
| + service_provider_impl->AddService<HumanResourceDatabase>(
|
| [](const ConnectionContext& connection_context,
|
| InterfaceRequest<HumanResourceDatabase> hr_db_request) {
|
| // It will be deleted automatically when the underlying pipe
|
|
|