Index: services/shell/tests/util.cc |
diff --git a/services/shell/tests/util.cc b/services/shell/tests/util.cc |
index ea8e385435a7bf5b82c32dbaad10f8d5f996393d..8cdd71b9d27b296de0a2d13f467b4eeaf1bf4feb 100644 |
--- a/services/shell/tests/util.cc |
+++ b/services/shell/tests/util.cc |
@@ -20,7 +20,7 @@ |
#include "services/shell/public/cpp/connection.h" |
#include "services/shell/public/cpp/connector.h" |
#include "services/shell/public/interfaces/connector.mojom.h" |
-#include "services/shell/public/interfaces/shell_client_factory.mojom.h" |
+#include "services/shell/public/interfaces/service_factory.mojom.h" |
#include "services/shell/runner/common/switches.h" |
namespace shell { |
@@ -69,9 +69,9 @@ std::unique_ptr<Connection> LaunchAndConnectToProcess( |
mojo::ScopedMessagePipeHandle pipe = |
mojo::edk::CreateParentMessagePipe(primordial_pipe_token, child_token); |
- shell::mojom::ShellClientPtr client; |
+ shell::mojom::ServicePtr client; |
client.Bind( |
- mojo::InterfacePtrInfo<shell::mojom::ShellClient>(std::move(pipe), 0u)); |
+ mojo::InterfacePtrInfo<shell::mojom::Service>(std::move(pipe), 0u)); |
shell::mojom::PIDReceiverPtr receiver; |
shell::Connector::ConnectParams params(target); |