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

Unified Diff: ash/autoclick/mus/autoclick_application.h

Issue 2420253002: Rename shell namespace to service_manager (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 | « no previous file | ash/autoclick/mus/autoclick_application.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/autoclick/mus/autoclick_application.h
diff --git a/ash/autoclick/mus/autoclick_application.h b/ash/autoclick/mus/autoclick_application.h
index 5bd951ee813a03fa878e96cd395de1ee08bafadd..1006ea1183cfc77424563281f2ac678555d08970 100644
--- a/ash/autoclick/mus/autoclick_application.h
+++ b/ash/autoclick/mus/autoclick_application.h
@@ -25,21 +25,21 @@ namespace ash {
namespace autoclick {
class AutoclickApplication
- : public shell::Service,
+ : public service_manager::Service,
public mash::mojom::Launchable,
public mojom::AutoclickController,
- public shell::InterfaceFactory<mash::mojom::Launchable>,
- public shell::InterfaceFactory<mojom::AutoclickController>,
+ public service_manager::InterfaceFactory<mash::mojom::Launchable>,
+ public service_manager::InterfaceFactory<mojom::AutoclickController>,
public AutoclickControllerCommonDelegate {
public:
AutoclickApplication();
~AutoclickApplication() override;
private:
- // shell::Service:
- void OnStart(const shell::Identity& identity) override;
- bool OnConnect(const shell::Identity& remote_identity,
- shell::InterfaceRegistry* registry) override;
+ // service_manager::Service:
+ void OnStart(const service_manager::Identity& identity) override;
+ bool OnConnect(const service_manager::Identity& remote_identity,
+ service_manager::InterfaceRegistry* registry) override;
// mojom::Launchable:
void Launch(uint32_t what, mash::mojom::LaunchMode how) override;
@@ -47,12 +47,12 @@ class AutoclickApplication
// mojom::AutoclickController:
void SetAutoclickDelay(uint32_t delay_in_milliseconds) override;
- // shell::InterfaceFactory<mojom::Launchable>:
- void Create(const shell::Identity& remote_identity,
+ // service_manager::InterfaceFactory<mojom::Launchable>:
+ void Create(const service_manager::Identity& remote_identity,
mash::mojom::LaunchableRequest request) override;
- // shell::InterfaceFactory<mojom::AutoclickController>:
- void Create(const shell::Identity& remote_identity,
+ // service_manager::InterfaceFactory<mojom::AutoclickController>:
+ void Create(const service_manager::Identity& remote_identity,
mojom::AutoclickControllerRequest request) override;
// AutoclickControllerCommonDelegate:
« no previous file with comments | « no previous file | ash/autoclick/mus/autoclick_application.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698