blob: 75e191a67dff9db805f9867c390a9469c2155256 [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.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_MESSAGE_REPORT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_MESSAGE_REPORT_H_
#include "third_party/blink/renderer/bindings/core/v8/source_location.h"
#include "third_party/blink/renderer/core/frame/report_body.h"
namespace blink {
class MessageReport : public ReportBody {
public:
MessageReport(const String& message, std::unique_ptr<SourceLocation> location)
: message_(message), location_(std::move(location)) {}
~MessageReport() override = default;
String message() const { return message_; }
long lineNumber() const { return location_->LineNumber(); }
long columnNumber() const { return location_->ColumnNumber(); }
String sourceFile() const {
return location_->Url().IsNull() ? "" : location_->Url();
}
protected:
const String message_;
std::unique_ptr<SourceLocation> location_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_MESSAGE_REPORT_H_