| Index: services/shell/tests/connect/connect_test_app.cc
|
| diff --git a/services/shell/tests/connect/connect_test_app.cc b/services/shell/tests/connect/connect_test_app.cc
|
| index 2a081d77a462ac56334e3c5e824cd7f6b2b3dcc6..b93d3fe7389dc490ce496300ac35b59bfb78e14c 100644
|
| --- a/services/shell/tests/connect/connect_test_app.cc
|
| +++ b/services/shell/tests/connect/connect_test_app.cc
|
| @@ -86,25 +86,25 @@ class ConnectTestApp : public Service,
|
| }
|
|
|
| // 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::StandaloneApp>:
|
| - void Create(Connection* connection,
|
| + void Create(const Identity& remote_identity,
|
| test::mojom::StandaloneAppRequest request) override {
|
| standalone_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));
|
| }
|
|
|