chromium/chrome/updater/app/server/posix/update_service_internal_stub.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 CHROME_UPDATER_APP_SERVER_POSIX_UPDATE_SERVICE_INTERNAL_STUB_H_
#define CHROME_UPDATER_APP_SERVER_POSIX_UPDATE_SERVICE_INTERNAL_STUB_H_

#include "base/memory/scoped_refptr.h"
#include "chrome/updater/app/server/posix/mojom/updater_service_internal.mojom.h"
#include "chrome/updater/update_service.h"
#include "chrome/updater/update_service_internal.h"
#include "components/named_mojo_ipc_server/named_mojo_ipc_server.h"

namespace updater {

// Receives RPC calls from the client and delegates them to an
// UpdateServiceInternal. The stub creates and manages a `NamedMojoIpcServer`
// to listen for and broker new Mojo connections with clients.
class UpdateServiceInternalStub : public mojom::UpdateServiceInternal {};

}  // namespace updater

#endif  // CHROME_UPDATER_APP_SERVER_POSIX_UPDATE_SERVICE_INTERNAL_STUB_H_