chromium/components/mirroring/service/rpc_dispatcher_impl.h

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

#ifndef COMPONENTS_MIRRORING_SERVICE_RPC_DISPATCHER_IMPL_H_
#define COMPONENTS_MIRRORING_SERVICE_RPC_DISPATCHER_IMPL_H_

#include <stdint.h>

#include "base/component_export.h"
#include "base/containers/span.h"
#include "base/functional/callback.h"
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ref.h"
#include "components/mirroring/service/rpc_dispatcher.h"
#include "third_party/openscreen/src/cast/streaming/receiver_message.h"
#include "third_party/openscreen/src/cast/streaming/sender_message.h"
#include "third_party/openscreen/src/cast/streaming/session_messenger.h"
#include "third_party/openscreen/src/platform/base/error.h"

namespace mirroring {

// Service for dispatching inbound and outbound RPC messages using an
// openscreen::cast::SenderSessionMessenger.
class COMPONENT_EXPORT(MIRRORING_SERVICE) RpcDispatcherImpl
    : public RpcDispatcher {};

}  // namespace mirroring

#endif  // COMPONENTS_MIRRORING_SERVICE_RPC_DISPATCHER_IMPL_H_