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

Unified Diff: chrome/common/ntp_logging_events.h

Issue 662823002: Fix incorrect IPC_ENUM_TRAITS_MAX_VALUE for NTPLoggingEventType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/split-enum
Patch Set: Rename to NTP_EVENT_TYPE_LAST Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/common/render_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/ntp_logging_events.h
diff --git a/chrome/common/ntp_logging_events.h b/chrome/common/ntp_logging_events.h
index cf256292c9bad61b3efb76fb284260f5d592e0ec..8df5a07eb457259dcf34c7648a3b6ab9cb00c647 100644
--- a/chrome/common/ntp_logging_events.h
+++ b/chrome/common/ntp_logging_events.h
@@ -8,7 +8,7 @@
// The different types of events that are logged from the NTP. This enum is used
// to transfer information from the NTP javascript to the renderer and is not
// used as a UMA enum histogram's logged value.
-// Note: Keep in sync with browser/resources/local_ntp/most_visited_utils.js
+// Note: Keep in sync with browser/resources/local_ntp/most_visited_util.js
enum NTPLoggingEventType {
// The suggestion is coming from the server.
NTP_SERVER_SIDE_SUGGESTION = 0,
@@ -43,7 +43,7 @@ enum NTPLoggingEventType {
// The user moused over an NTP tile or title.
NTP_MOUSEOVER = 9,
- NTP_NUM_EVENT_TYPES
+ NTP_EVENT_TYPE_LAST = NTP_MOUSEOVER
};
#endif // CHROME_COMMON_NTP_LOGGING_EVENTS_H_
« no previous file with comments | « no previous file | chrome/common/render_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698