summaryrefslogtreecommitdiff
path: root/chromium/components/variations/metrics.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-08-30 10:22:43 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-08-30 12:36:28 +0000
commit271a6c3487a14599023a9106329505597638d793 (patch)
treee040d58ffc86c1480b79ca8528020ca9ec919bf8 /chromium/components/variations/metrics.h
parent7b2ffa587235a47d4094787d72f38102089f402a (diff)
downloadqtwebengine-chromium-271a6c3487a14599023a9106329505597638d793.tar.gz
BASELINE: Update Chromium to 77.0.3865.59
Change-Id: I1e89a5f3b009a9519a6705102ad65c92fe736f21 Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/components/variations/metrics.h')
-rw-r--r--chromium/components/variations/metrics.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/chromium/components/variations/metrics.h b/chromium/components/variations/metrics.h
index 5fe2b8cca20..660a4751f03 100644
--- a/chromium/components/variations/metrics.h
+++ b/chromium/components/variations/metrics.h
@@ -47,16 +47,21 @@ enum class StoreSeedResult {
FAILED_PARSE,
FAILED_SIGNATURE,
FAILED_GZIP,
- // DELTA_COUNT is not so much a result of the seed store, but rather counting
- // the number of delta-compressed seeds the SeedStore() function saw. Kept in
- // the same histogram for convenience of comparing against the other values.
- DELTA_COUNT,
+ DELTA_COUNT_OBSOLETE,
FAILED_DELTA_READ_SEED,
FAILED_DELTA_APPLY,
FAILED_DELTA_STORE,
FAILED_UNGZIP,
FAILED_EMPTY_GZIP_CONTENTS,
FAILED_UNSUPPORTED_SEED_FORMAT,
+ // The following are not so much a result of the seed store, but rather
+ // counting the types of seeds the SeedStore() function saw. Kept in the same
+ // histogram for efficiency and convenience of comparing against the other
+ // values.
+ GZIP_DELTA_COUNT,
+ NON_GZIP_DELTA_COUNT,
+ GZIP_FULL_COUNT,
+ NON_GZIP_FULL_COUNT,
ENUM_SIZE
};