| Index: mash/quick_launch/quick_launch_application.h
|
| diff --git a/mash/quick_launch/quick_launch_application.h b/mash/quick_launch/quick_launch_application.h
|
| index cc7c18b7d65ff74e609be700e64ba365317379f6..8b74f9c2b36c0a27854563b140ab5fe9a23dc445 100644
|
| --- a/mash/quick_launch/quick_launch_application.h
|
| +++ b/mash/quick_launch/quick_launch_application.h
|
| @@ -10,7 +10,7 @@
|
| #include "base/macros.h"
|
| #include "mash/public/interfaces/launchable.mojom.h"
|
| #include "mojo/public/cpp/bindings/binding_set.h"
|
| -#include "services/shell/public/cpp/shell_client.h"
|
| +#include "services/shell/public/cpp/service.h"
|
| #include "services/tracing/public/cpp/tracing_impl.h"
|
|
|
| namespace views {
|
| @@ -23,7 +23,7 @@ namespace mash {
|
| namespace quick_launch {
|
|
|
| class QuickLaunchApplication
|
| - : public shell::ShellClient,
|
| + : public shell::Service,
|
| public mojom::Launchable,
|
| public shell::InterfaceFactory<mojom::Launchable> {
|
| public:
|
| @@ -33,11 +33,11 @@ class QuickLaunchApplication
|
| void RemoveWindow(views::Widget* window);
|
|
|
| private:
|
| - // shell::ShellClient:
|
| - void Initialize(shell::Connector* connector,
|
| - const shell::Identity& identity,
|
| - uint32_t id) override;
|
| - bool AcceptConnection(shell::Connection* connection) override;
|
| + // shell::Service:
|
| + void OnStart(shell::Connector* connector,
|
| + const shell::Identity& identity,
|
| + uint32_t id) override;
|
| + bool OnConnect(shell::Connection* connection) override;
|
|
|
| // mojom::Launchable:
|
| void Launch(uint32_t what, mojom::LaunchMode how) override;
|
|
|