| Index: services/shell/tests/connect/connect_test_package.cc
|
| diff --git a/services/shell/tests/connect/connect_test_package.cc b/services/shell/tests/connect/connect_test_package.cc
|
| index 54d39ec8cca5d4f5a8d4af62d08401d3193a4bca..5d3c2256ff01e0a22030c77587b0c92d6235259f 100644
|
| --- a/services/shell/tests/connect/connect_test_package.cc
|
| +++ b/services/shell/tests/connect/connect_test_package.cc
|
| @@ -91,19 +91,19 @@ class ProvidedService
|
| }
|
|
|
| // InterfaceFactory<test::mojom::ConnectTestService>:
|
| - void Create(Connection* connection,
|
| + void Create(const Identity& remote_identity,
|
| test::mojom::ConnectTestServiceRequest request) override {
|
| bindings_.AddBinding(this, std::move(request));
|
| }
|
|
|
| // InterfaceFactory<test::mojom::BlockedInterface>:
|
| - void Create(Connection* connection,
|
| + void Create(const Identity& remote_identity,
|
| test::mojom::BlockedInterfaceRequest request) override {
|
| blocked_bindings_.AddBinding(this, std::move(request));
|
| }
|
|
|
| // InterfaceFactory<test::mojom::UserIdTest>:
|
| - void Create(Connection* connection,
|
| + void Create(const Identity& remote_identity,
|
| test::mojom::UserIdTestRequest request) override {
|
| user_id_test_bindings_.AddBinding(this, std::move(request));
|
| }
|
| @@ -189,13 +189,13 @@ class ConnectTestService
|
| }
|
|
|
| // InterfaceFactory<mojom::ServiceFactory>:
|
| - void Create(Connection* connection,
|
| + void Create(const Identity& remote_identity,
|
| mojom::ServiceFactoryRequest request) override {
|
| service_factory_bindings_.AddBinding(this, std::move(request));
|
| }
|
|
|
| // InterfaceFactory<test::mojom::ConnectTestService>:
|
| - void Create(Connection* connection,
|
| + void Create(const Identity& remote_identity,
|
| test::mojom::ConnectTestServiceRequest request) override {
|
| bindings_.AddBinding(this, std::move(request));
|
| }
|
|
|