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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2785493004: Integrate RankerModelLoader with TranslateRanker. (Closed)
Patch Set: rebase Created 3 years, 8 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index a08a797caadefaa69ebfc2739e4bfd0fda291e82..3e51f6a3c78e46606bb053a1413cb513bb05fd3b 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -73477,8 +73477,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Counts translation target page schemes.</summary>
</histogram>
-<histogram name="Translate.Ranker.Model.Status"
- enum="TranslateRankerModelStatus">
+<histogram name="Translate.Ranker.Model.Status" enum="RankerModelStatus">
<owner>rogerm@google.com</owner>
<summary>
Tracks the outcome of attempts to download a Translate Ranker Model.
@@ -108325,6 +108324,15 @@ from previous Chrome versions.
<int value="6" label="In use"/>
</enum>
+<enum name="RankerModelStatus" type="int">
+ <int value="0" label="OK"/>
+ <int value="1" label="Download Throttled"/>
+ <int value="2" label="Download Failed"/>
+ <int value="3" label="Parse Failed"/>
+ <int value="4" label="Validation Failed"/>
+ <int value="5" label="Incompatible"/>
+</enum>
+
<enum name="RapporDiscardReason" type="int">
<int value="0" label="Upload Success"/>
<int value="1" label="Upload Rejected"/>
@@ -113358,14 +113366,6 @@ from previous Chrome versions.
<int value="6" label="CLD can complement a sub code"/>
</enum>
-<enum name="TranslateRankerModelStatus" type="int">
- <int value="0" label="OK"/>
- <int value="1" label="Download Throttled"/>
- <int value="2" label="Download Failed"/>
- <int value="3" label="Parse Failed"/>
- <int value="4" label="Validation Failed"/>
rkaplow 2017/04/03 03:14:25 you can actually leave the original enum. You're a
Roger McFarlane (Chromium) 2017/04/03 17:44:55 This change should've landed with https://coderevi
-</enum>
-
<enum name="TranslateScheme" type="int">
<int value="0" label="http"/>
<int value="1" label="https"/>

Powered by Google App Engine
This is Rietveld 408576698