| Index: mash/task_viewer/task_viewer.cc
|
| diff --git a/mash/task_viewer/task_viewer.cc b/mash/task_viewer/task_viewer.cc
|
| index 4296b1156bbe7835b5dc38504f630e894dd6aa0d..8bfcfd44f301ab4ad5a525c571c2fd28ca25c3ee 100644
|
| --- a/mash/task_viewer/task_viewer.cc
|
| +++ b/mash/task_viewer/task_viewer.cc
|
| @@ -302,7 +302,7 @@ void TaskViewer::OnStart() {
|
|
|
| bool TaskViewer::OnConnect(const service_manager::ServiceInfo& remote_info,
|
| service_manager::InterfaceRegistry* registry) {
|
| - registry->AddInterface<mojom::Launchable>(this);
|
| + registry->AddInterface<::mash::mojom::Launchable>(this);
|
| return true;
|
| }
|
|
|
| @@ -336,7 +336,7 @@ void TaskViewer::Launch(uint32_t what, mojom::LaunchMode how) {
|
| }
|
|
|
| void TaskViewer::Create(const service_manager::Identity& remote_identity,
|
| - mojom::LaunchableRequest request) {
|
| + ::mash::mojom::LaunchableRequest request) {
|
| bindings_.AddBinding(this, std::move(request));
|
| }
|
|
|
|
|