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

// Copyright 2016 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/devtools_domain_handler.h"

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

namespace content {
namespace protocol {

DevToolsDomainHandler::DevToolsDomainHandler(const std::string& name)
    :{}

DevToolsDomainHandler::~DevToolsDomainHandler() = default;

void DevToolsDomainHandler::SetRenderer(int process_host_id,
                                        RenderFrameHostImpl* frame_host) {}

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

Response DevToolsDomainHandler::Disable() {}

void DevToolsDomainHandler::SetSession(DevToolsSession* session) {}

const std::string& DevToolsDomainHandler::name() const {}

DevToolsSession* DevToolsDomainHandler::session() {}

}  // namespace protocol
}  // namespace content