Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Side by Side Diff: content/public/common/persistent_notification_status.h

Issue 1155483002: Adding UMA for persistent notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changing histgram enum label. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_COMMON_PERSISTENT_NOTIFICATION_STATUS_H_ 5 #ifndef CONTENT_PUBLIC_COMMON_PERSISTENT_NOTIFICATION_STATUS_H_
6 #define CONTENT_PUBLIC_COMMON_PERSISTENT_NOTIFICATION_STATUS_H_ 6 #define CONTENT_PUBLIC_COMMON_PERSISTENT_NOTIFICATION_STATUS_H_
7 7
8 namespace content { 8 namespace content {
9 9
10 // Delivery status for persistent notification clicks to a Service Worker. 10 // Delivery status for persistent notification clicks to a Service Worker.
11 // PersistentNotificationStatus entries should not be reordered or removed.
11 enum PersistentNotificationStatus { 12 enum PersistentNotificationStatus {
12 // The notificationclick event has been delivered successfully. 13 // The notificationclick event has been delivered successfully.
13 PERSISTENT_NOTIFICATION_STATUS_SUCCESS = 0, 14 PERSISTENT_NOTIFICATION_STATUS_SUCCESS = 0,
14 15
15 // The event could not be delivered because the Service Worker is unavailable. 16 // The event could not be delivered because the Service Worker is unavailable.
16 PERSISTENT_NOTIFICATION_STATUS_NO_SERVICE_WORKER, 17 PERSISTENT_NOTIFICATION_STATUS_NO_SERVICE_WORKER,
17 18
18 // The event could not be delivered because of a Service Worker error. 19 // The event could not be delivered because of a Service Worker error.
19 PERSISTENT_NOTIFICATION_STATUS_SERVICE_WORKER_ERROR, 20 PERSISTENT_NOTIFICATION_STATUS_SERVICE_WORKER_ERROR,
20 21
21 // The event has been delivered, but the developer extended the event with a 22 // The event has been delivered, but the developer extended the event with a
22 // promise that has been rejected. 23 // promise that has been rejected.
23 PERSISTENT_NOTIFICATION_STATUS_EVENT_WAITUNTIL_REJECTED, 24 PERSISTENT_NOTIFICATION_STATUS_EVENT_WAITUNTIL_REJECTED,
24 25
25 // The event could not be delivered because the data associated with the 26 // The event could not be delivered because the data associated with the
26 // notification could not be read from the database. 27 // notification could not be read from the database.
27 PERSISTENT_NOTIFICATION_STATUS_DATABASE_ERROR, 28 PERSISTENT_NOTIFICATION_STATUS_DATABASE_ERROR,
29
30 // Only add new entries above this line.
31 PERSISTENT_NOTIFICATION_STATUS_MAX
28 }; 32 };
29 33
30 } // content 34 } // content
31 35
32 #endif // CONTENT_PUBLIC_COMMON_PERSISTENT_NOTIFICATION_STATUS_H_ 36 #endif // CONTENT_PUBLIC_COMMON_PERSISTENT_NOTIFICATION_STATUS_H_
OLDNEW
« no previous file with comments | « chrome/browser/notifications/platform_notification_service_impl.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698