// Copyright 2018 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_AUTOFILL_CORE_BROWSER_UI_SUGGESTION_HIDING_REASON_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_UI_SUGGESTION_HIDING_REASON_H_ namespace autofill { // This reason is passed whenever a popup needs to be closed. // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. // When adding a value to this enum, please update // tools/metrics/histograms/metadata/autofill/enums.xml. enum class SuggestionHidingReason { … }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_UI_SUGGESTION_HIDING_REASON_H_