/* * Copyright (c) 2024, Luke Wilde * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace Web::ContentSecurityPolicy::Directives { GC_DEFINE_ALLOCATOR(ReportToDirective); ReportToDirective::ReportToDirective(String name, Vector value) : Directive(move(name), move(value)) { } }