1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50

content / public / browser / console_message.h [blame]

// 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 {
  ConsoleMessage(blink::mojom::ConsoleMessageSource source,
                 blink::mojom::ConsoleMessageLevel message_level,
                 const std::u16string& message,
                 int line_number,
                 const GURL& source_url)
      : source(source),
        message_level(message_level),
        message(message),
        line_number(line_number),
        source_url(source_url) {}

  // The type of source this came from.
  const blink::mojom::ConsoleMessageSource source;
  // The severity of the console message.
  const blink::mojom::ConsoleMessageLevel message_level;
  // The message that was logged to the console.
  const std::u16string message;
  // The line in the script file that the log was emitted at.
  const int line_number;
  // The URL that emitted the log.
  const GURL source_url;
};

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_CONSOLE_MESSAGE_H_