// 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_STANDARD_MANAGEMENT_POLICY_PROVIDER_H_ #define CHROME_BROWSER_EXTENSIONS_STANDARD_MANAGEMENT_POLICY_PROVIDER_H_ #include <string> #include "base/memory/raw_ptr.h" #include "chrome/browser/profiles/profile.h" #include "extensions/browser/management_policy.h" namespace extensions { class Extension; class ExtensionManagement; // The standard management policy provider, which takes into account the // extension block/allowlists and admin block/allowlists. class StandardManagementPolicyProvider : public ManagementPolicy::Provider { … }; } // namespace extensions #endif // CHROME_BROWSER_EXTENSIONS_STANDARD_MANAGEMENT_POLICY_PROVIDER_H_