blob: d8d1f6ce8aa27f785283601f296bded0e8849e7a [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 EXTENSIONS_BROWSER_SUPERVISED_EXTENSION_APPROVAL_RESULT_H_
#define EXTENSIONS_BROWSER_SUPERVISED_EXTENSION_APPROVAL_RESULT_H_
namespace extensions {
// Result of the supervised user extension approval flow.
enum class SupervisedExtensionApprovalResult {
kApproved, // Extension installation was approved.
kCanceled, // Extension approval flow was canceled.
kFailed, // Extension approval failed due to an error.
kBlocked, // Extension installation has been blocked by a parent.
};
} // namespace extensions
#endif // EXTENSIONS_BROWSER_SUPERVISED_EXTENSION_APPROVAL_RESULT_H_