chromium/third_party/blink/renderer/core/frame/location_report_body.cc

// Copyright 2019 The Chromium Authors
// 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/location_report_body.h"
#include "third_party/blink/renderer/bindings/core/v8/capture_source_location.h"
#include "third_party/blink/renderer/platform/wtf/hash_functions.h"

namespace blink {

// static
LocationReportBody::ReportLocation LocationReportBody::CreateReportLocation(
    const String& file,
    std::optional<uint32_t> line_number,
    std::optional<uint32_t> column_number) {}

// static
LocationReportBody::ReportLocation LocationReportBody::CreateReportLocation(
    std::unique_ptr<SourceLocation> location) {}

void LocationReportBody::BuildJSONValue(V8ObjectBuilder& builder) const {}

unsigned LocationReportBody::MatchId() const {}

}  // namespace blink