Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(206)

Unified Diff: services/shell/background/tests/test_service.cc

Issue 2156203003: shell::ApplicationRunner -> shell::ServiceRunner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/public/cpp/bindings/tests/versioning_test_service.cc ('k') | services/shell/public/cpp/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/shell/background/tests/test_service.cc
diff --git a/services/shell/background/tests/test_service.cc b/services/shell/background/tests/test_service.cc
index 16aa42d5ff1f66fad8870173813e566da00438a6..9c95772a419a0640d114c3f8a871a27409d967d5 100644
--- a/services/shell/background/tests/test_service.cc
+++ b/services/shell/background/tests/test_service.cc
@@ -5,9 +5,9 @@
#include "mojo/public/c/system/main.h"
#include "mojo/public/cpp/bindings/binding_set.h"
#include "services/shell/background/tests/test.mojom.h"
-#include "services/shell/public/cpp/application_runner.h"
#include "services/shell/public/cpp/connection.h"
#include "services/shell/public/cpp/service.h"
+#include "services/shell/public/cpp/service_runner.h"
namespace shell {
@@ -47,6 +47,6 @@ class TestClient : public Service,
} // namespace shell
MojoResult MojoMain(MojoHandle shell_handle) {
- shell::ApplicationRunner runner(new shell::TestClient);
+ shell::ServiceRunner runner(new shell::TestClient);
return runner.Run(shell_handle);
}
« no previous file with comments | « mojo/public/cpp/bindings/tests/versioning_test_service.cc ('k') | services/shell/public/cpp/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698