Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Unified Diff: tools/metrics/histograms/histograms.xml

Issue 1770983002: Add atomic sequence number to ChannelIDService and check that in URLRequestHttpJob logging (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « net/url_request/url_request_http_job.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index c3def319c25e6aa543293567a61efd3e571c3387..a00e599583def27926f362a16238e5c5c3747d87 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -82494,13 +82494,23 @@ To add a new entry, add it with any value and run test to compute valid value.
</enum>
<enum name="TokenBinding.StoreEphemerality" type="int">
- <int value="0" label="CID_EPHEMERAL_COOKIE_EPHEMERAL"/>
+ <int value="0" label="CID_EPHEMERAL_COOKIE_EPHEMERAL">
+ This value has been deprecated and replaced by EPHEMERAL_MATCH and
+ EPHEMERAL_MISMATCH.
+ </int>
<int value="1" label="CID_EPHEMERAL_COOKIE_PERSISTENT"/>
<int value="2" label="CID_PERSISTENT_COOKIE_EPHEMERAL"/>
- <int value="3" label="CID_PERSISTENT_COOKIE_PERSISTENT"/>
+ <int value="3" label="CID_PERSISTENT_COOKIE_PERSISTENT">
+ This value has been deprecated and replaced by PERSISTENT_MATCH and
+ PERSISTENT_MISMATCH.
+ </int>
<int value="4" label="NO_COOKIE_STORE"/>
<int value="5" label="NO_CHANNEL_ID_STORE"/>
<int value="6" label="KNOWN_MISMATCH"/>
+ <int value="7" label="EPHEMERAL_MATCH"/>
+ <int value="8" label="EPHEMERAL_MISMATCH"/>
+ <int value="9" label="PERSISTENT_MATCH"/>
+ <int value="10" label="PERSISTENT_MISMATCH"/>
</enum>
<enum name="TokenBinding.Support" type="int">
« no previous file with comments | « net/url_request/url_request_http_job.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698