// Copyright 2024 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_ENTERPRISE_COMPANION_ENTERPRISE_COMPANION_STATUS_H_ #define CHROME_ENTERPRISE_COMPANION_ENTERPRISE_COMPANION_STATUS_H_ #include <cstdint> #include <ostream> #include <string> #include <utility> #include <variant> #include "base/functional/overloaded.h" #include "chrome/enterprise_companion/mojom/enterprise_companion.mojom.h" #include "chrome/enterprise_companion/proto/enterprise_companion_event.pb.h" #include "components/policy/core/common/cloud/cloud_policy_constants.h" #include "components/policy/core/common/cloud/cloud_policy_validator.h" namespace enterprise_companion { // Errors defined by the enterprise companion app. Ordinals are transmitted // across IPC and network boundaries. Entries must not be removed or reordered. enum class ApplicationError { … }; // Represents an error which was deserialized from an external source (e.g. // across an IPC or network boundary). The error may not be known to this // version of the application. struct PersistedError { … }; // Canonical view of statuses used across the application. class EnterpriseCompanionStatus { … }; // A general-purpose callback type for operations that produce an // EnterpriseCompanionStatus. StatusCallback; } // namespace enterprise_companion #endif // CHROME_ENTERPRISE_COMPANION_ENTERPRISE_COMPANION_STATUS_H_