// 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 CHROME_BROWSER_DEVTOOLS_PROTOCOL_EXTENSIONS_HANDLER_H_ #define CHROME_BROWSER_DEVTOOLS_PROTOCOL_EXTENSIONS_HANDLER_H_ #include "chrome/browser/devtools/protocol/extensions.h" #include "chrome/browser/devtools/protocol/protocol.h" #include "content/public/browser/web_contents.h" #include "extensions/browser/api/storage/storage_frontend.h" #include "extensions/common/extension.h" // Implements the Extensions domain for Chrome DevTools Protocol. class ExtensionsHandler : public protocol::Extensions::Backend { … }; #endif // CHROME_BROWSER_DEVTOOLS_PROTOCOL_EXTENSIONS_HANDLER_H_