chromium/content/public/browser/console_message.h

// 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.

#ifndef CONTENT_PUBLIC_BROWSER_CONSOLE_MESSAGE_H_
#define CONTENT_PUBLIC_BROWSER_CONSOLE_MESSAGE_H_

#include <string>

#include "content/common/content_export.h"
#include "third_party/blink/public/mojom/devtools/console_message.mojom.h"
#include "url/gurl.h"

namespace content {

CONTENT_EXPORT const char* MessageSourceToString(
    blink::mojom::ConsoleMessageSource source);

CONTENT_EXPORT logging::LogSeverity ConsoleMessageLevelToLogSeverity(
    blink::mojom::ConsoleMessageLevel level);

// A collection of information about a message that has been added to the
// console.
struct ConsoleMessage {};

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_CONSOLE_MESSAGE_H_