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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2721663002: Move Credentials when migrating to HSTS page (Closed)
Patch Set: Code Deduplication Created 3 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 262ca22a17dafdaaf988794fe64d9b93b08ab987..41400ae0b601cbe164dafefda1ed5113db7f0875 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -46599,6 +46599,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="PasswordManager.HttpPasswordMigrationMode"
+ enum="HttpPasswordMigrationMode">
+ <owner>jdoerrie@chromium.org</owner>
+ <summary>
+ The mode of migration applied to HTTP passwords migrating to HTTPS. Recorded
+ on HTTPS password form load when there are no credentials saved.
vasilii 2017/03/08 13:31:16 Do we record when nothing is done (no credentials
jdoerrie 2017/03/09 18:35:49 Done.
+ </summary>
+</histogram>
+
<histogram name="PasswordManager.ImportedPasswordsPerUserInCSV">
<owner>xunlu@chromium.org</owner>
<owner>vabr@chromium.org</owner>
@@ -95867,6 +95876,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="7" label="HEADER_HTTP_09_ON_REUSED_SOCKET"/>
</enum>
+<enum name="HttpPasswordMigrationMode" type="int">
+ <int value="0" label="Moved">
+ HTTP credentials were moved during migration to HTTPS
+ </int>
+ <int value="1" label="Copied">
+ HTTP credentials were copied during migration to HTTPS
+ </int>
+</enum>
+
<enum name="HttpPipelineStatus" type="int">
<int value="0" label="Success"/>
<int value="1" label="Redirected"/>

Powered by Google App Engine
This is Rietveld 408576698