| Index: ash/mus/sysui_application.h
|
| diff --git a/ash/mus/sysui_application.h b/ash/mus/sysui_application.h
|
| index 4e8afcee7dca69a0601bf8dbe6e88d3ec96e08dd..8175753986841a3e0275568d0b28e043c6e58a58 100644
|
| --- a/ash/mus/sysui_application.h
|
| +++ b/ash/mus/sysui_application.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <memory>
|
|
|
| +#include "ash/mus/public/interfaces/wallpaper.mojom.h"
|
| #include "base/macros.h"
|
| #include "mash/shelf/public/interfaces/shelf.mojom.h"
|
| #include "mojo/public/cpp/bindings/binding_set.h"
|
| @@ -20,7 +21,8 @@ class AshInit;
|
|
|
| class SysUIApplication
|
| : public shell::ShellClient,
|
| - public shell::InterfaceFactory<mash::shelf::mojom::ShelfController> {
|
| + public shell::InterfaceFactory<mash::shelf::mojom::ShelfController>,
|
| + public shell::InterfaceFactory<ash::mus::mojom::WallpaperController> {
|
| public:
|
| SysUIApplication();
|
| ~SysUIApplication() override;
|
| @@ -34,14 +36,19 @@ class SysUIApplication
|
|
|
| // InterfaceFactory<mash::shelf::mojom::ShelfController>:
|
| void Create(shell::Connection* connection,
|
| - mojo::InterfaceRequest<mash::shelf::mojom::ShelfController>
|
| - request) override;
|
| + mash::shelf::mojom::ShelfControllerRequest request) override;
|
| +
|
| + // InterfaceFactory<ash::mus::mojom::WallpaperController>:
|
| + void Create(shell::Connection* connection,
|
| + ash::mus::mojom::WallpaperControllerRequest request) override;
|
|
|
| mojo::TracingImpl tracing_;
|
| std::unique_ptr<AshInit> ash_init_;
|
|
|
| mojo::BindingSet<mash::shelf::mojom::ShelfController>
|
| shelf_controller_bindings_;
|
| + mojo::BindingSet<ash::mus::mojom::WallpaperController>
|
| + wallpaper_controller_bindings_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(SysUIApplication);
|
| };
|
|
|