chromium/codelabs/mojo_examples/mojo_impls.cc

// 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.

#include "codelabs/mojo_examples/mojo_impls.h"

#include "base/logging.h"

ObjectAImpl::ObjectAImpl() = default;
ObjectAImpl::~ObjectAImpl() = default;

void ObjectAImpl::BindToFrozenTaskRunner(
    mojo::PendingAssociatedReceiver<codelabs::mojom::ObjectA> pending_receiver,
    scoped_refptr<base::SingleThreadTaskRunner> freezable_tq_runner) {}

void ObjectAImpl::DoA() {}

ObjectBImpl::ObjectBImpl() = default;
ObjectBImpl::~ObjectBImpl() = default;

void ObjectBImpl::Bind(mojo::PendingAssociatedReceiver<codelabs::mojom::ObjectB>
                           pending_receiver) {}

void ObjectBImpl::DoB() {}