blob: 8edb646b205d713c2959e32db52ce6e123d77998 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/core/frame/feature_policy_violation_report_body.h"
namespace blink {
void FeaturePolicyViolationReportBody::BuildJSONValue(
V8ObjectBuilder& builder) const {
LocationReportBody::BuildJSONValue(builder);
builder.AddString("featureId", featureId());
builder.AddString("disposition", disposition());
builder.AddStringOrNull("message", message());
}
} // namespace blink