ladybird/Libraries/LibWeb/ContentSecurityPolicy/Directives/ReportUriDirective.cpp

19 lines
395 B
C++
Raw Normal View History

/*
* Copyright (c) 2024, Luke Wilde <luke@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/ContentSecurityPolicy/Directives/ReportUriDirective.h>
namespace Web::ContentSecurityPolicy::Directives {
GC_DEFINE_ALLOCATOR(ReportUriDirective);
ReportUriDirective::ReportUriDirective(String name, Vector<String> value)
: Directive(move(name), move(value))
{
}
}