// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_GFX_CA_LAYER_RESULT_H_ #define UI_GFX_CA_LAYER_RESULT_H_ namespace gfx { // This is the result of ProcessForCALayerOverlays() and is for macOS only. // This enum is used for histogram states and should only have new values added // to the end before COUNT. tools/metrics/histograms/enums.xml should be updated // together. // All changes made to enum CALayerResult should be added to // ui/gfx/mojom/ca_layer_result.mojom. enum CALayerResult { … }; } // namespace gfx #endif // UI_GFX_CA_LAYER_RESULT_H_