LibWeb: Convert SandboxingFlagSet into a enum class

Instead of having a nested enum within a struct, use the macro
AK_ENUM_BITWISE_OPERATORS to add all the convienent has_flag free
functions and such for ease of use.
This commit is contained in:
Andrew Kaster 2023-08-28 11:57:21 +02:00 committed by Alexander Kalenik
commit d97b09693e
Notes: sideshowbarker 2024-07-18 03:35:30 +09:00
9 changed files with 39 additions and 41 deletions

View file

@ -17,7 +17,7 @@ struct SourceSnapshotParams {
bool has_transient_activation;
// a sandboxing flag set
SandboxingFlagSet sandboxing_flags;
SandboxingFlagSet sandboxing_flags = {};
// a boolean
bool allows_downloading;