// 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_BROWSER_UI_LENS_LENS_OVERLAY_DISMISSAL_SOURCE_H_ #define CHROME_BROWSER_UI_LENS_LENS_OVERLAY_DISMISSAL_SOURCE_H_ namespace lens { // Designates the source of any lens overlay dismissal (in other words, any // call to `LensOverlayController:CloseUI()`). // // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. // // LINT.IfChange(LensOverlayDismissalSource) enum class LensOverlayDismissalSource { … }; // LINT.ThenChange(//tools/metrics/histograms/metadata/lens/enums.xml:LensOverlayDismissalSource) } // namespace lens #endif // CHROME_BROWSER_UI_LENS_LENS_OVERLAY_DISMISSAL_SOURCE_H_