#ifndef THIRD_PARTY_BLINK_PUBLIC_COMMON_SECURITY_CONTEXT_INSECURE_REQUEST_POLICY_H_
#define THIRD_PARTY_BLINK_PUBLIC_COMMON_SECURITY_CONTEXT_INSECURE_REQUEST_POLICY_H_
#include <bitset>
#include "base/check_op.h"
#include "third_party/blink/public/mojom/security_context/insecure_request_policy.mojom-shared.h"
namespace blink {
namespace mojom {
inline constexpr InsecureRequestPolicy operator&(InsecureRequestPolicy a,
InsecureRequestPolicy b) { … }
inline constexpr InsecureRequestPolicy operator|(InsecureRequestPolicy a,
InsecureRequestPolicy b) { … }
inline InsecureRequestPolicy& operator|=(InsecureRequestPolicy& a,
InsecureRequestPolicy b) { … }
inline constexpr InsecureRequestPolicy operator~(InsecureRequestPolicy flags) { … }
}
}
#endif