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

Unified Diff: chrome/browser/resources/options/chromeos/accounts_options.html

Issue 335953002: Add UMA stats for user settings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 6 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:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/chromeos/accounts_options.html
diff --git a/chrome/browser/resources/options/chromeos/accounts_options.html b/chrome/browser/resources/options/chromeos/accounts_options.html
index 5d70dcfafb78b687ba5e25a9e7e50f81c98e3830..2ddc846d232feaf0b820df730ab16f3c2be5566f 100644
--- a/chrome/browser/resources/options/chromeos/accounts_options.html
+++ b/chrome/browser/resources/options/chromeos/accounts_options.html
@@ -12,8 +12,9 @@
<td class="option-name">
<div class="checkbox">
<label>
- <input id="allowBwsiCheck" pref="cros.accounts.allowBWSI"
- type="checkbox">
+ <input id="allowBwsiCheck" type="checkbox"
+ metric="Options_GuestBrowsing"
+ pref="cros.accounts.allowBWSI">
<span i18n-content="allow_BWSI"></span>
</label>
</div>
@@ -23,8 +24,9 @@
<td class="option-name">
<div class="checkbox">
<label>
- <input id="allowSupervisedCheck"
- pref="cros.accounts.supervisedUsersEnabled" type="checkbox">
+ <input id="allowSupervisedCheck" type="checkbox"
+ metric="Options_SupervisedUsers"
+ pref="cros.accounts.supervisedUsersEnabled">
<span i18n-content="allow_supervised_users"></span>
</label>
</div>
@@ -34,8 +36,9 @@
<td class="option-name">
<div class="checkbox">
<label>
- <input id="showUserNamesCheck"
- pref="cros.accounts.showUserNamesOnSignIn" type="checkbox">
+ <input id="showUserNamesCheck" type="checkbox"
+ metric="Options_ShowUserNamesOnSignin"
+ pref="cros.accounts.showUserNamesOnSignIn">
<span i18n-content="show_user_on_signin"></span>
</label>
</div>
@@ -45,8 +48,10 @@
<td class="option-name">
<div class="checkbox">
<label>
- <input id="useWhitelistCheck" pref="cros.accounts.allowGuest"
- type="checkbox" inverted_pref>
+ <input id="useWhitelistCheck" type="checkbox"
+ metric="Options_AllowAllUsers"
+ pref="cros.accounts.allowGuest"
+ inverted_pref>
<span i18n-content="use_whitelist"></span>
</label>
</div>
« no previous file with comments | « chrome/browser/resources/options/browser_options.js ('k') | chrome/browser/resources/options/chromeos/accounts_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698