chromium/third_party/blink/renderer/modules/notifications/notification_metrics.h

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_NOTIFICATIONS_NOTIFICATION_METRICS_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_NOTIFICATIONS_NOTIFICATION_METRICS_H_

namespace blink {

// This enum is used in UMA. Do not delete or re-order entries. New entries
// should only be added at the end. Please keep in sync with
// "PersistentNotificationDisplayResult" in //tools/metrics/histograms/enums.xml
enum class PersistentNotificationDisplayResult {};

void RecordPersistentNotificationDisplayResult(
    PersistentNotificationDisplayResult reason);

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_MODULES_NOTIFICATIONS_NOTIFICATION_METRICS_H_