Index: chrome/browser/ui/webui/ntp/ntp_user_data_logger.h |
diff --git a/chrome/browser/ui/webui/ntp/ntp_user_data_logger.h b/chrome/browser/ui/webui/ntp/ntp_user_data_logger.h |
index 41cd59d5fe7b594f498876b8963b1ea18cd38341..bfdfd20f4c53cce13c188c22d4876a6de3e8127c 100644 |
--- a/chrome/browser/ui/webui/ntp/ntp_user_data_logger.h |
+++ b/chrome/browser/ui/webui/ntp/ntp_user_data_logger.h |
@@ -64,6 +64,14 @@ class NTPUserDataLogger |
// of a thumbnail image. |
size_t number_of_thumbnail_errors_; |
+ // Total number of attempts made to load thumbnail images while providing a |
+ // fallback thumbnail for this NTP session. |
+ size_t number_of_thumbnail_with_fallback_attempts_; |
Mathieu
2013/09/03 21:40:23
nit: number_of_fallback_thumbnails_requested_?
beaudoin
2013/09/03 22:34:55
Done.
|
+ |
+ // Total number of errors that occurred while trying to load the primary |
+ // thumbnail image and that caused a fallback to the secondary thumbnail. |
+ size_t number_of_thumbnail_fallbacks_; |
Mathieu
2013/09/03 21:40:23
nit: number_of_fallback_thumbnails_used_?
beaudoin
2013/09/03 22:34:55
Done.
|
+ |
// The URL of this New Tab Page - varies based on NTP version. |
GURL ntp_url_; |