// Copyright 2021 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_HID_WEB_HID_HISTOGRAMS_H_ #define CHROME_BROWSER_HID_WEB_HID_HISTOGRAMS_H_ // Reasons the chooser may be closed. These are used in histograms so do not // remove/reorder entries. Only add at the end and update kMaxValue. Also // remember to update the enum listing in tools/metrics/histograms/enums.xml. enum class WebHidChooserClosed { … }; void RecordWebHidChooserClosure(WebHidChooserClosed disposition); #endif // CHROME_BROWSER_HID_WEB_HID_HISTOGRAMS_H_