| Index: mash/task_viewer/task_viewer.cc
|
| diff --git a/mash/task_viewer/task_viewer.cc b/mash/task_viewer/task_viewer.cc
|
| index 445cd02b20d80cd9c2db374b4c67da49347d9276..721aa70a9aa440e7551b76fc0cfa1f638e8bf81a 100644
|
| --- a/mash/task_viewer/task_viewer.cc
|
| +++ b/mash/task_viewer/task_viewer.cc
|
| @@ -307,14 +307,14 @@ void TaskViewer::Launch(uint32_t what, mojom::LaunchMode how) {
|
| }
|
|
|
| shell::mojom::ServiceManagerPtr service_manager;
|
| - connector()->ConnectToInterface("mojo:shell", &service_manager);
|
| + connector()->ConnectToInterface("service:shell", &service_manager);
|
|
|
| shell::mojom::ServiceManagerListenerPtr listener;
|
| shell::mojom::ServiceManagerListenerRequest request = GetProxy(&listener);
|
| service_manager->AddListener(std::move(listener));
|
|
|
| catalog::mojom::CatalogPtr catalog;
|
| - connector()->ConnectToInterface("mojo:catalog", &catalog);
|
| + connector()->ConnectToInterface("service:catalog", &catalog);
|
|
|
| TaskViewerContents* task_viewer = new TaskViewerContents(
|
| this, std::move(request), std::move(catalog));
|
|
|