// Copyright 2022 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_EXTENSIONS_PERMISSIONS_SITE_PERMISSIONS_HELPER_H_ #define CHROME_BROWSER_EXTENSIONS_PERMISSIONS_SITE_PERMISSIONS_HELPER_H_ #include "base/memory/raw_ptr.h" #include "chrome/browser/ui/toolbar/toolbar_actions_model.h" #include "extensions/browser/permissions_manager.h" class Profile; namespace content { class WebContents; } namespace extensions { class Extension; // A helper class responsible for providing the permissions data to models used // in the Extensions toolbar (e.g: ExtensionContextMenuModel). class SitePermissionsHelper { … }; } // namespace extensions #endif // CHROME_BROWSER_EXTENSIONS_PERMISSIONS_SITE_PERMISSIONS_HELPER_H_