#ifndef CONTENT_BROWSER_DEVTOOLS_WEB_CONTENTS_DEVTOOLS_AGENT_HOST_H_
#define CONTENT_BROWSER_DEVTOOLS_WEB_CONTENTS_DEVTOOLS_AGENT_HOST_H_
#include <optional>
#include "content/browser/devtools/devtools_agent_host_impl.h"
#include "content/common/content_export.h"
#include "content/public/browser/render_process_host_observer.h"
#include "content/public/browser/web_contents_observer.h"
namespace content {
class FrameTreeNode;
class CONTENT_EXPORT WebContentsDevToolsAgentHost
: public DevToolsAgentHostImpl,
public WebContentsObserver { … };
}
#endif