| Index: services/ui/service.h
|
| diff --git a/services/ui/service.h b/services/ui/service.h
|
| index 48c11efef134fa4350c08bae606a8c4829e8bfbd..d30fea6c67a14a88c404d9bc2a9464c6e0c231ec 100644
|
| --- a/services/ui/service.h
|
| +++ b/services/ui/service.h
|
| @@ -19,6 +19,7 @@
|
| #include "services/shell/public/cpp/service.h"
|
| #include "services/tracing/public/cpp/tracing_impl.h"
|
| #include "services/ui/input_devices/input_device_server.h"
|
| +#include "services/ui/public/interfaces/accessibility_manager.mojom.h"
|
| #include "services/ui/public/interfaces/clipboard.mojom.h"
|
| #include "services/ui/public/interfaces/display.mojom.h"
|
| #include "services/ui/public/interfaces/gpu.mojom.h"
|
| @@ -60,6 +61,7 @@ class WindowServer;
|
| class Service
|
| : public shell::Service,
|
| public ws::WindowServerDelegate,
|
| + public shell::InterfaceFactory<mojom::AccessibilityManager>,
|
| public shell::InterfaceFactory<mojom::Clipboard>,
|
| public shell::InterfaceFactory<mojom::DisplayManager>,
|
| public shell::InterfaceFactory<mojom::Gpu>,
|
| @@ -104,6 +106,10 @@ class Service
|
| bool IsTestConfig() const override;
|
| void CreateDefaultDisplays() override;
|
|
|
| + // shell::InterfaceFactory<mojom::AccessibilityManager> implementation.
|
| + void Create(shell::Connection* connection,
|
| + mojom::AccessibilityManagerRequest request) override;
|
| +
|
| // shell::InterfaceFactory<mojom::Clipboard> implementation.
|
| void Create(shell::Connection* connection,
|
| mojom::ClipboardRequest request) override;
|
|
|