chromium/base/test/mock_log.cc

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

#include "base/test/mock_log.h"

namespace base {
namespace test {

// static
MockLog* MockLog::g_instance_ =;
Lock MockLog::g_lock;

MockLog::MockLog() :{}

MockLog::~MockLog() {}

void MockLog::StartCapturingLogs() {}

void MockLog::StopCapturingLogs() {}

// static
bool MockLog::LogMessageHandler(int severity,
                                const char* file,
                                int line,
                                size_t message_start,
                                const std::string& str) {}

}  // namespace test
}  // namespace base