#ifndef CHROME_UPDATER_IPC_UPDATE_SERVICE_PROXY_POSIX_H_
#define CHROME_UPDATER_IPC_UPDATE_SERVICE_PROXY_POSIX_H_
#include <memory>
#include <optional>
#include "base/functional/callback_forward.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/sequence_checker.h"
#include "base/types/expected.h"
#include "chrome/updater/app/server/posix/mojom/updater_service.mojom.h"
#include "chrome/updater/update_service.h"
#include "chrome/updater/updater_scope.h"
#include "mojo/public/cpp/bindings/remote.h"
namespace base {
class FilePath;
class Version;
}
namespace mojo {
class IsolatedConnection;
class PlatformChannelEndpoint;
}
namespace updater {
RpcError;
struct RegistrationRequest;
class UpdateServiceProxyImpl
: public base::RefCountedThreadSafe<UpdateServiceProxyImpl> { … };
}
#endif