diff options
author | beaudoin@chromium.org <beaudoin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-05 18:20:25 +0000 |
---|---|---|
committer | beaudoin@chromium.org <beaudoin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-05 18:20:25 +0000 |
commit | 97063c3e2f54db0b01cc612a590eeb7ac478f5a2 (patch) | |
tree | 56f52875bba222258190f4f6369595c8e9e5c914 /chrome/common/ntp_logging_events.h | |
parent | 46bca10dadfbd2e59ac36d09bb2a890bd0bee6ce (diff) | |
download | chromium_src-97063c3e2f54db0b01cc612a590eeb7ac478f5a2.zip chromium_src-97063c3e2f54db0b01cc612a590eeb7ac478f5a2.tar.gz chromium_src-97063c3e2f54db0b01cc612a590eeb7ac478f5a2.tar.bz2 |
Ensure the 1993 NTP logs to UMA Most Visited tiles that use the fallback thumbnail instead of the preferred one.
TBR=sky@chromium.org
Review URL: https://chromiumcodereview.appspot.com/23874005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221463 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/ntp_logging_events.h')
-rw-r--r-- | chrome/common/ntp_logging_events.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/chrome/common/ntp_logging_events.h b/chrome/common/ntp_logging_events.h index 3a95a59..8bc8738 100644 --- a/chrome/common/ntp_logging_events.h +++ b/chrome/common/ntp_logging_events.h @@ -13,9 +13,18 @@ enum NTPLoggingEventType { // The page attempted to load a thumbnail image. NTP_THUMBNAIL_ATTEMPT = 1, - // There was an error in loading a thumbnail image. + // 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, + NTP_NUM_EVENT_TYPES }; |