Remove EWK_BRINGUPS for M120 #3
[platform/framework/web/chromium-efl.git] / chrome / app / notification_metrics.cc
1 // Copyright 2021 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/app/notification_metrics.h"
6
7 #include "base/metrics/histogram_functions.h"
8
9 void LogLaunchedViaNotificationAction(NotificationActionSource source) {
10   base::UmaHistogramEnumeration(
11       "Notifications.macOS.LaunchedViaNotificationAction", source);
12 }