Index: chrome/browser/resources/local_ntp/most_visited_util.js |
diff --git a/chrome/browser/resources/local_ntp/most_visited_util.js b/chrome/browser/resources/local_ntp/most_visited_util.js |
index 446b7ca20e67b94c4491bc30b19f6c02bc538b35..3e058bcc3979361055ac94119b9065fa0d144ed3 100644 |
--- a/chrome/browser/resources/local_ntp/most_visited_util.js |
+++ b/chrome/browser/resources/local_ntp/most_visited_util.js |
@@ -19,8 +19,15 @@ var NTP_LOGGING_EVENT_TYPE = { |
NTP_MOUSEOVER: 0, |
// The page attempted to load a thumbnail image. |
NTP_THUMBNAIL_ATTEMPT: 1, |
- // There was an error in loading a thumbnail image. |
- NTP_THUMBNAIL_ERROR: 2 |
+ // There was an error in loading both the thumbnail image and the fallback |
+ // (if it was provided), resulting in a grey tile. |
+ NTP_THUMBNAIL_ERROR: 2, |
+ // The page attempted to load a thumbnail URL while a fallback thumbnail was |
+ // provided. |
+ NTP_FALLBACK_THUMBNAIL_REQUESTED: 3, |
+ // The primary thumbnail image failed to load and caused us to use the |
+ // secondary thumbnail as a fallback. |
+ NTP_FALLBACK_THUMBNAIL_USED: 4 |
}; |
/** |