Index: chrome/browser/resources/local_ntp/most_visited_single.js |
diff --git a/chrome/browser/resources/local_ntp/most_visited_single.js b/chrome/browser/resources/local_ntp/most_visited_single.js |
index 817fd76b0dc1c4c7583f9d10655030e57cf16ff6..89b6adfd2d03ddb1ee696f29e6b1c8eb5acbebb8 100644 |
--- a/chrome/browser/resources/local_ntp/most_visited_single.js |
+++ b/chrome/browser/resources/local_ntp/most_visited_single.js |
@@ -23,8 +23,8 @@ var LOG_TYPE = { |
// Indicates a tile was rendered, no matter if it's a thumbnail, a gray tile |
// or an external tile. |
NTP_TILE: 2, |
- // A NTP Tile has finished loading (successfully or failing). |
- NTP_TILE_LOADED: 10, |
+ // All NTP Tiles have finished loading (successfully or failing). |
+ NTP_ALL_TILES_LOADED: 11, |
}; |
@@ -133,7 +133,7 @@ var countLoad = function() { |
loadedCounter -= 1; |
if (loadedCounter <= 0) { |
showTiles(); |
- logEvent(LOG_TYPE.NTP_TILE_LOADED); |
+ logEvent(LOG_TYPE.NTP_ALL_TILES_LOADED); |
window.parent.postMessage({cmd: 'loaded'}, DOMAIN_ORIGIN); |
loadedCounter = 1; |
} |