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 73aef20c2dc314e00bc76d3f1a28c8562dca02a5..2a081d77a462ac56334e3c5e824cd7f6b2b3dcc6 100644 |
--- a/services/shell/tests/connect/connect_test_app.cc |
+++ b/services/shell/tests/connect/connect_test_app.cc |
@@ -11,10 +11,10 @@ |
#include "base/run_loop.h" |
#include "mojo/public/c/system/main.h" |
#include "mojo/public/cpp/bindings/binding_set.h" |
-#include "services/shell/public/cpp/application_runner.h" |
#include "services/shell/public/cpp/connector.h" |
#include "services/shell/public/cpp/interface_factory.h" |
#include "services/shell/public/cpp/service.h" |
+#include "services/shell/public/cpp/service_runner.h" |
#include "services/shell/public/interfaces/connector.mojom.h" |
#include "services/shell/tests/connect/connect_test.mojom.h" |
@@ -224,6 +224,6 @@ class ConnectTestApp : public Service, |
MojoResult MojoMain(MojoHandle shell_handle) { |
MojoResult rv = |
- shell::ApplicationRunner(new shell::ConnectTestApp).Run(shell_handle); |
+ shell::ServiceRunner(new shell::ConnectTestApp).Run(shell_handle); |
return rv; |
} |