#ifndef SERVICES_NETWORK_PUBLIC_CPP_CORS_ORIGIN_ACCESS_ENTRY_H_
#define SERVICES_NETWORK_PUBLIC_CPP_CORS_ORIGIN_ACCESS_ENTRY_H_
#include <string>
#include "base/component_export.h"
#include "mojo/public/cpp/bindings/struct_ptr.h"
#include "services/network/public/mojom/cors.mojom-shared.h"
#include "services/network/public/mojom/cors_origin_pattern.mojom-shared.h"
namespace url {
class Origin;
}
namespace network {
namespace mojom {
class CorsOriginPattern;
}
namespace cors {
bool COMPONENT_EXPORT(NETWORK_CPP)
IsSubdomainOfHost(const std::string& subdomain, const std::string& host);
class COMPONENT_EXPORT(NETWORK_CPP) OriginAccessEntry final { … };
}
}
#endif