| Index: mash/quick_launch/quick_launch.h
|
| diff --git a/mash/quick_launch/quick_launch.h b/mash/quick_launch/quick_launch.h
|
| index 8e99b041f933d3675703806678885a55fcef305e..0a42717ee0c64b46fac626cd760e310cc3f2065b 100644
|
| --- a/mash/quick_launch/quick_launch.h
|
| +++ b/mash/quick_launch/quick_launch.h
|
| @@ -10,6 +10,7 @@
|
| #include "base/macros.h"
|
| #include "mash/public/interfaces/launchable.mojom.h"
|
| #include "mojo/public/cpp/bindings/binding_set.h"
|
| +#include "services/service_manager/public/cpp/binder_registry.h"
|
| #include "services/service_manager/public/cpp/interface_factory.h"
|
| #include "services/service_manager/public/cpp/service.h"
|
| #include "services/tracing/public/cpp/provider.h"
|
| @@ -35,8 +36,9 @@ class QuickLaunch
|
| private:
|
| // service_manager::Service:
|
| void OnStart() override;
|
| - bool OnConnect(const service_manager::ServiceInfo& remote_info,
|
| - service_manager::InterfaceRegistry* registry) override;
|
| + void OnBindInterface(const service_manager::ServiceInfo& source_info,
|
| + const std::string& interface_name,
|
| + mojo::ScopedMessagePipeHandle interface_pipe) override;
|
|
|
| // ::mash::mojom::Launchable:
|
| void Launch(uint32_t what, ::mash::mojom::LaunchMode how) override;
|
| @@ -48,6 +50,8 @@ class QuickLaunch
|
| mojo::BindingSet<::mash::mojom::Launchable> bindings_;
|
| std::vector<views::Widget*> windows_;
|
|
|
| + service_manager::BinderRegistry registry_;
|
| +
|
| tracing::Provider tracing_;
|
| std::unique_ptr<views::AuraInit> aura_init_;
|
|
|
|
|