// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_MANTA_MANTA_STATUS_H_ #define COMPONENTS_MANTA_MANTA_STATUS_H_ #include <string> namespace manta { // Please do not renumber these, as they are used for metrics. // Must match //ash/webui/common/mojom/sea_pen.mojom. // Must match MantaStatusCode enum values in enums.xml. enum class MantaStatusCode { … }; struct MantaStatus { … }; } // namespace manta #endif // COMPONENTS_MANTA_MANTA_STATUS_H_