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

Unified Diff: mash/task_viewer/task_viewer.cc

Issue 2509853002: Convert //mash to define service names in mojom (Closed)
Patch Set: . Created 4 years, 1 month 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 | « mash/task_viewer/task_viewer.h ('k') | mash/webtest/public/interfaces/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
}
« no previous file with comments | « mash/task_viewer/task_viewer.h ('k') | mash/webtest/public/interfaces/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698