chromium/chrome/test/chromedriver/chrome/log.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/test/chromedriver/chrome/log.h"

#include <stddef.h>

#include <memory>
#include <utility>

#include "base/json/json_reader.h"
#include "base/json/json_writer.h"
#include "base/strings/string_util.h"
#include "base/values.h"
#include "build/build_config.h"

void Log::AddEntry(Level level, const std::string& message) {}

void Log::AddEntry(Level level,
                   const std::string& source,
                   const std::string& message) {}

bool Log::truncate_logged_params =;
IsVLogOnFunc Log::is_vlog_on_func =;

namespace {

void TruncateString(std::string* data) {}

base::Value SmartDeepCopy(const base::Value* value) {}

}  // namespace

bool IsVLogOn(int vlog_level) {}

std::string PrettyPrintValue(const base::Value& value) {}

std::string FormatValueForDisplay(const base::Value& value) {}

std::string FormatJsonForDisplay(const std::string& json) {}