chromium/services/accessibility/features/user_interface_interface_binder.h

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef SERVICES_ACCESSIBILITY_FEATURES_USER_INTERFACE_INTERFACE_BINDER_H_
#define SERVICES_ACCESSIBILITY_FEATURES_USER_INTERFACE_INTERFACE_BINDER_H_

#include "services/accessibility/features/interface_binder.h"
#include "services/accessibility/public/mojom/accessibility_service.mojom.h"

namespace ax {

// Binds one end of a mojom UserInterface pipe hosted in Javascript to the
// AccessibilityServiceClient that connects back to the main OS process.
class UserInterfaceInterfaceBinder : public InterfaceBinder {
 public:
  explicit UserInterfaceInterfaceBinder(
      mojom::AccessibilityServiceClient* ax_service_client);
  ~UserInterfaceInterfaceBinder() override;
  UserInterfaceInterfaceBinder(const UserInterfaceInterfaceBinder&) = delete;
  UserInterfaceInterfaceBinder& operator=(const UserInterfaceInterfaceBinder&) =
      delete;

  // InterfaceBinder:
  bool MatchesInterface(const std::string& interface_name) override;
  void BindReceiver(mojo::GenericPendingReceiver receiver) override;

 private:
  // The caller must ensure the client outlives `this`. Here, this is guaranteed
  // because the client is always a `AssistiveTechnologyControllerImpl`, which
  // transitively owns `this` via `V8Manager`.
  raw_ptr<mojom::AccessibilityServiceClient> ax_service_client_;
};

}  // namespace ax

#endif  // SERVICES_ACCESSIBILITY_FEATURES_USER_INTERFACE_INTERFACE_BINDER_H_