chromium/mojo/public/cpp/bindings/tests/associated_interface_unittest.test-mojom

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

module mojo.test.associated_interface_unittest.mojom;

import "mojo/public/mojom/base/generic_pending_associated_receiver.mojom";

interface ClumsyBinder {
  DropAssociatedBinder(pending_associated_receiver<AssociatedBinder> receiver);
};

interface AssociatedBinder {
  Bind(mojo_base.mojom.GenericPendingAssociatedReceiver receiver);
};