chromium/content/browser/devtools/mojom_devtools_agent_host.h

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

#ifndef CONTENT_BROWSER_DEVTOOLS_MOJOM_DEVTOOLS_AGENT_HOST_H_
#define CONTENT_BROWSER_DEVTOOLS_MOJOM_DEVTOOLS_AGENT_HOST_H_

#include <memory>
#include <string>
#include <vector>

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

namespace content {

class MojomDevToolsAgentHostDelegate;

// Agent host that implements a basic blink::mojom::DevToolsAgent flow using a
// delegate.
class MojomDevToolsAgentHost : public DevToolsAgentHostImpl {};
}  // namespace content

#endif  // CONTENT_BROWSER_DEVTOOLS_MOJOM_DEVTOOLS_AGENT_HOST_H_