// 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 "content/browser/log_console_message.h" #include "base/feature_list.h" #include "base/logging.h" #include "build/build_config.h" #include "content/public/browser/console_message.h" #include "content/public/common/content_features.h" namespace content { void LogConsoleMessage(blink::mojom::ConsoleMessageLevel log_level, const std::u16string& message, int32_t line_number, bool is_builtin_component, bool is_off_the_record, const std::u16string& source_id) { … } } // namespace content