// Copyright 2024 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_SHELL_BROWSER_PROTOCOL_SHELL_DEVTOOLS_SESSION_H_ #define CONTENT_SHELL_BROWSER_PROTOCOL_SHELL_DEVTOOLS_SESSION_H_ #include <memory> #include "base/containers/flat_map.h" #include "base/memory/raw_ptr.h" #include "content/public/browser/devtools_manager_delegate.h" #include "content/shell/browser/protocol/protocol.h" namespace content { class BrowserContext; namespace shell::protocol { class DomainHandler; class ShellDevToolsSession : public FrontendChannel { … }; } // namespace shell::protocol } // namespace content #endif // CONTENT_SHELL_BROWSER_PROTOCOL_SHELL_DEVTOOLS_SESSION_H_