| Index: third_party/WebKit/Source/modules/notifications/NotificationImageLoader.cpp
|
| diff --git a/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.cpp b/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.cpp
|
| index 00ba58c1a6114778667138e89eb1e88e5d3e96e8..817fa6251d40b614e606036098cfbedc199c5088 100644
|
| --- a/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.cpp
|
| +++ b/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.cpp
|
| @@ -21,7 +21,7 @@
|
| #include <memory>
|
|
|
| #define NOTIFICATION_PER_TYPE_HISTOGRAM_COUNTS(metric, type_name, value, max) \
|
| - case NotificationImageLoader::Type::type_name: { \
|
| + case NotificationImageLoader::Type::k##type_name: { \
|
| DEFINE_THREAD_SAFE_STATIC_LOCAL( \
|
| CustomCountHistogram, metric##type_name##Histogram, \
|
| new CustomCountHistogram("Notifications." #metric "." #type_name, \
|
| @@ -30,6 +30,8 @@
|
| break; \
|
| }
|
|
|
| + /* DO NOT SUBMIT - conflict resolution helper:
|
| + * Important to have Image instead of kImage below. */
|
| #define NOTIFICATION_HISTOGRAM_COUNTS(metric, type, value, max) \
|
| switch (type) { \
|
| NOTIFICATION_PER_TYPE_HISTOGRAM_COUNTS(metric, Image, value, max) \
|
|
|