chromium/services/accessibility/features/automation_client_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_AUTOMATION_CLIENT_INTERFACE_BINDER_H_
#define SERVICES_ACCESSIBILITY_FEATURES_AUTOMATION_CLIENT_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 AutomationClient pipe hosted in Javascript to the
// AccessibilityServiceClient that connects back to the main OS process.
class AutomationClientInterfaceBinder : public InterfaceBinder {
 public:
  explicit AutomationClientInterfaceBinder(
      mojom::AccessibilityServiceClient* ax_service_client);
  ~AutomationClientInterfaceBinder() override;
  AutomationClientInterfaceBinder(const AutomationClientInterfaceBinder&) =
      delete;
  AutomationClientInterfaceBinder& operator=(
      const AutomationClientInterfaceBinder&) = 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_AUTOMATION_CLIENT_INTERFACE_BINDER_H_