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

Unified Diff: chrome/common/search/ntp_logging_events.h

Issue 2141933002: Split NTP_TILE_LOADED event. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
Index: chrome/common/search/ntp_logging_events.h
diff --git a/chrome/common/search/ntp_logging_events.h b/chrome/common/search/ntp_logging_events.h
index ba84f6909b660c483102e806674564d5caec242d..06aad77d40ee10fa7eee3a75ee9a7eb1d00a4300 100644
--- a/chrome/common/search/ntp_logging_events.h
+++ b/chrome/common/search/ntp_logging_events.h
@@ -43,10 +43,15 @@ enum NTPLoggingEventType {
// Deleted: NTP_MOUSEOVER = 9
- // A NTP Tile has finished loading (successfully or failing).
+ // A NTP Tile has finished loading (successfully or failing). Logged only by
+ // the multi-iframe version of the NTP.
NTP_TILE_LOADED = 10,
- NTP_EVENT_TYPE_LAST = NTP_TILE_LOADED
+ // All NTP tiles have finished loading (successfully or failing). Logged only
+ // by the single-iframe version of the NTP.
+ NTP_ALL_TILES_LOADED = 11,
+
+ NTP_EVENT_TYPE_LAST = NTP_ALL_TILES_LOADED
};
// The source of an NTP tile.

Powered by Google App Engine
This is Rietveld 408576698