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

Unified Diff: ash/mus/app_launch_unittest.cc

Issue 2390013002: Rename mojo: to service: (Closed)
Patch Set: . Created 4 years, 2 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 | « ash/mus/accessibility_delegate_mus.cc ('k') | ash/mus/manifest.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/app_launch_unittest.cc
diff --git a/ash/mus/app_launch_unittest.cc b/ash/mus/app_launch_unittest.cc
index 1b36eba2328f85a5dcb3c92e0023772f21e90786..7f174872a60ff9809adcebba89a13ae393440a60 100644
--- a/ash/mus/app_launch_unittest.cc
+++ b/ash/mus/app_launch_unittest.cc
@@ -31,16 +31,16 @@ class AppLaunchTest : public shell::test::ServiceTest {
};
TEST_F(AppLaunchTest, TestQuickLaunch) {
- connector()->Connect("mojo:ash");
- connector()->Connect("mojo:quick_launch");
+ connector()->Connect("service:ash");
+ connector()->Connect("service:quick_launch");
ui::mojom::WindowServerTestPtr test_interface;
- connector()->ConnectToInterface("mojo:ui", &test_interface);
+ connector()->ConnectToInterface("service:ui", &test_interface);
base::RunLoop run_loop;
bool success = false;
test_interface->EnsureClientHasDrawnWindow(
- "mojo:quick_launch",
+ "service:quick_launch",
base::Bind(&RunCallback, &success, run_loop.QuitClosure()));
run_loop.Run();
EXPECT_TRUE(success);
« no previous file with comments | « ash/mus/accessibility_delegate_mus.cc ('k') | ash/mus/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698