// Copyright 2019 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_GCM_DRIVER_CRYPTO_GCM_ENCRYPTION_RESULT_H_ #define COMPONENTS_GCM_DRIVER_CRYPTO_GCM_ENCRYPTION_RESULT_H_ namespace gcm { // Result of encrypting an outgoing message. The values of these reasons must // not be changed as they are being recorded using UMA. When adding a value, // please update GCMEncryptionResult in //tools/metrics/histograms/enums.xml. enum class GCMEncryptionResult { … }; } // namespace gcm #endif // COMPONENTS_GCM_DRIVER_CRYPTO_GCM_ENCRYPTION_RESULT_H_