blob: 08c2ec21c820261c7c5adf97b03761ddbe8b0038 [file] [log] [blame]
// Copyright 2017 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.
// https://wicg.github.io/reporting/#deprecation-report
[
NoInterfaceObject
] interface DeprecationReportBody : ReportBody {
readonly attribute DOMString id;
[CallWith=ScriptState] readonly attribute object? anticipatedRemoval;
readonly attribute DOMString message;
readonly attribute DOMString? sourceFile;
readonly attribute unsigned long? lineNumber;
readonly attribute unsigned long? columnNumber;
[CallWith=ScriptState] object toJSON();
};