chromium/components/web_package/signed_web_bundles/identity_validator.h

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

#ifndef COMPONENTS_WEB_PACKAGE_SIGNED_WEB_BUNDLES_IDENTITY_VALIDATOR_H_
#define COMPONENTS_WEB_PACKAGE_SIGNED_WEB_BUNDLES_IDENTITY_VALIDATOR_H_

#include <string>
#include <vector>

#include "base/no_destructor.h"
#include "base/types/expected.h"
#include "base/version.h"
#include "components/web_package/signed_web_bundles/types.h"
#include "third_party/abseil-cpp/absl/types/variant.h"

namespace web_package {

namespace test {
class SignedWebBundleSignatureVerifierTestBase;
class SignedWebBundleSignatureVerifierGoToolTest;
}  // namespace test

class IdentityValidator {};

}  // namespace web_package

#endif  // COMPONENTS_WEB_PACKAGE_SIGNED_WEB_BUNDLES_IDENTITY_VALIDATOR_H_