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

Unified Diff: mash/quick_launch/quick_launch.h

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/quick_launch/public/interfaces/constants.mojom ('k') | mash/quick_launch/quick_launch.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/quick_launch/quick_launch.h
diff --git a/mash/quick_launch/quick_launch.h b/mash/quick_launch/quick_launch.h
index e4848756ce7a0e0b2f341dc74c8bed05598e4569..a543f99632b4ad3c5ef3b47705f23afc0bb71035 100644
--- a/mash/quick_launch/quick_launch.h
+++ b/mash/quick_launch/quick_launch.h
@@ -25,8 +25,8 @@ namespace quick_launch {
class QuickLaunch
: public service_manager::Service,
- public mojom::Launchable,
- public service_manager::InterfaceFactory<mojom::Launchable> {
+ public ::mash::mojom::Launchable,
+ public service_manager::InterfaceFactory<::mash::mojom::Launchable> {
public:
QuickLaunch();
~QuickLaunch() override;
@@ -39,14 +39,14 @@ class QuickLaunch
bool OnConnect(const service_manager::ServiceInfo& remote_info,
service_manager::InterfaceRegistry* registry) override;
- // mojom::Launchable:
- void Launch(uint32_t what, mojom::LaunchMode how) override;
+ // ::mash::mojom::Launchable:
+ void Launch(uint32_t what, ::mash::mojom::LaunchMode how) override;
- // service_manager::InterfaceFactory<mojom::Launchable>:
+ // service_manager::InterfaceFactory<::mash::mojom::Launchable>:
void Create(const service_manager::Identity& remote_identity,
- mojom::LaunchableRequest request) override;
+ ::mash::mojom::LaunchableRequest request) override;
- mojo::BindingSet<mojom::Launchable> bindings_;
+ mojo::BindingSet<::mash::mojom::Launchable> bindings_;
std::vector<views::Widget*> windows_;
tracing::Provider tracing_;
« no previous file with comments | « mash/quick_launch/public/interfaces/constants.mojom ('k') | mash/quick_launch/quick_launch.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698