| Index: services/shell/tests/lifecycle/app_client.cc
|
| diff --git a/services/shell/tests/lifecycle/app_client.cc b/services/shell/tests/lifecycle/app_client.cc
|
| index 256ef16a4dc639a478d2be4b67c4c4a8ce64a8e1..14d0c3ae212f724968aa84895399252f10f3418a 100644
|
| --- a/services/shell/tests/lifecycle/app_client.cc
|
| +++ b/services/shell/tests/lifecycle/app_client.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "services/shell/public/cpp/shell_connection.h"
|
|
|
| -namespace mojo {
|
| namespace shell {
|
| namespace test {
|
|
|
| @@ -15,12 +14,12 @@ AppClient::AppClient(shell::mojom::ShellClientRequest request)
|
| : connection_(new ShellConnection(this, std::move(request))) {}
|
| AppClient::~AppClient() {}
|
|
|
| -bool AppClient::AcceptConnection(mojo::Connection* connection) {
|
| +bool AppClient::AcceptConnection(Connection* connection) {
|
| connection->AddInterface<LifecycleControl>(this);
|
| return true;
|
| }
|
|
|
| -void AppClient::Create(mojo::Connection* connection,
|
| +void AppClient::Create(Connection* connection,
|
| LifecycleControlRequest request) {
|
| bindings_.AddBinding(this, std::move(request));
|
| }
|
| @@ -55,6 +54,5 @@ void AppClient::BindingLost() {
|
|
|
| } // namespace test
|
| } // namespace shell
|
| -} // namespace mojo
|
|
|
|
|
|
|