blob: debaa88230d213f2f180e3e09bacc2ab4b25b6f2 [file] [log] [blame]
// Copyright 2025 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_MANIFEST_CHECK_LEVEL_H_
#define CHROME_BROWSER_EXTENSIONS_MANIFEST_CHECK_LEVEL_H_
namespace extensions {
// The amount of manifest checking to perform.
enum class ManifestCheckLevel {
// Do not check for any manifest equality.
kNone,
// Only check that the expected and actual permissions have the same
// effective permissions.
kLoose,
// All data in the expected and actual manifests must match.
kStrict,
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_MANIFEST_CHECK_LEVEL_H_