// 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 THIRD_PARTY_BLINK_PUBLIC_COMMON_PERMISSIONS_POLICY_ORIGIN_WITH_POSSIBLE_WILDCARDS_H_ #define THIRD_PARTY_BLINK_PUBLIC_COMMON_PERMISSIONS_POLICY_ORIGIN_WITH_POSSIBLE_WILDCARDS_H_ #include "services/network/public/mojom/content_security_policy.mojom.h" #include "third_party/blink/public/common/common_export.h" #include "third_party/blink/public/mojom/permissions_policy/permissions_policy.mojom-shared.h" #include "url/origin.h" namespace blink { // This struct can represent an origin like https://foo.com/ or like // https://*.foo.com/. The wildcard can only represent a subdomain. // Note that https://*.foo.com/ matches domains like https://example.foo.com/ // or https://test.example.foo.com/ but does not match https://foo.com/. // Origins that do have wildcards cannot be opaque. class BLINK_COMMON_EXPORT OriginWithPossibleWildcards { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_PUBLIC_COMMON_PERMISSIONS_POLICY_ORIGIN_WITH_POSSIBLE_WILDCARDS_H_