chromium/content/browser/devtools/protocol/log_handler.cc

// Copyright 2020 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/devtools/protocol/log_handler.h"

#include "content/browser/devtools/devtools_agent_host_impl.h"

namespace content {
namespace protocol {

LogHandler::LogHandler() :{}
LogHandler::~LogHandler() = default;

// static
std::vector<LogHandler*> LogHandler::ForAgentHost(DevToolsAgentHostImpl* host) {}

void LogHandler::Wire(UberDispatcher* dispatcher) {}

DispatchResponse LogHandler::Disable() {}

DispatchResponse LogHandler::Enable() {}

void LogHandler::EntryAdded(Log::LogEntry* entry) {}

}  // namespace protocol
}  // namespace content