chromium/remoting/client/in_memory_log_handler.cc

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

#include "remoting/client/in_memory_log_handler.h"

#include "base/check.h"
#include "base/containers/ring_buffer.h"
#include "base/logging.h"
#include "base/synchronization/lock.h"

namespace remoting {

namespace {

constexpr size_t kMaxNumberOfLogs =;

struct LogHandlerContext {};

// Leaky.
LogHandlerContext* g_log_handler_context =;

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

}  // namespace

// static
void InMemoryLogHandler::Register() {}

// static
std::string InMemoryLogHandler::GetInMemoryLogs() {}

}  // namespace remoting