// Copyright 2012 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_INSTALLED_LOADER_H_ #define CHROME_BROWSER_EXTENSIONS_INSTALLED_LOADER_H_ #include <set> #include "base/files/file_path.h" #include "base/memory/raw_ptr.h" class Profile; namespace extensions { class ExtensionPrefs; class ExtensionRegistry; class ExtensionService; struct ExtensionInfo; // Used in histogram Extensions.HostPermissions.GrantedAccess, // Extensions.HostPermissions.GrantedAccessForBroadRequests and // Extensions.HostPermissions.GrantedAccessForTargetedRequests. // Entries should not be renumbered and numeric values should never be reused. // If you are adding to this enum, update HostPermissionAccess enum in // tools/metrics/histograms/enums.xml. enum class HostPermissionsAccess { … }; // Loads installed extensions from the prefs. class InstalledLoader { … }; } // namespace extensions #endif // CHROME_BROWSER_EXTENSIONS_INSTALLED_LOADER_H_