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

Side by Side Diff: chrome/browser/resources/options/personal_options.html

Issue 6770012: Handle the PasswordManagerAllowShowPasswords preference in the options webui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Keep password column, show "IT-admin" banner Created 9 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:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <div id="personal-page" class="page hidden"> 1 <div id="personal-page" class="page hidden">
2 <h1 i18n-content="personalPage"></h1> 2 <h1 i18n-content="personalPage"></h1>
3 3
4 <if expr="pp_ifdef('chromeos')"> 4 <if expr="pp_ifdef('chromeos')">
5 <section> 5 <section>
6 <h3 i18n-content="account"></h3> 6 <h3 i18n-content="account"></h3>
7 <div> 7 <div>
8 <table class="option-control-table"> 8 <table class="option-control-table">
9 <tr> 9 <tr>
10 <td> 10 <td>
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 <div class="radio"> 63 <div class="radio">
64 <label> 64 <label>
65 <input id="passwords-neversave" type="radio" name="passwords_radio" 65 <input id="passwords-neversave" type="radio" name="passwords_radio"
66 value="false" pref="profile.password_manager_enabled" 66 value="false" pref="profile.password_manager_enabled"
67 metric="Options_PasswordManager"> 67 metric="Options_PasswordManager">
68 <span i18n-content="passwordsNeverSave"></span> 68 <span i18n-content="passwordsNeverSave"></span>
69 </label> 69 </label>
70 </div> 70 </div>
71 <div><button id="manage-passwords" 71 <div><button id="manage-passwords"
72 i18n-content="manage_passwords"></button></div> 72 i18n-content="manage_passwords"></button></div>
73 <!-- This makes the managed-banner appear when the "pref" is
74 configured by the IT administrator. -->
75 <input name="password_allow_show_hidden" type="text"
76 pref="profile.password_manager_allow_show_passwords" hidden>
73 </div> 77 </div>
74 </section> 78 </section>
75 <section> 79 <section>
76 <h3 i18n-content="autofill"></h3> 80 <h3 i18n-content="autofill"></h3>
77 <div> 81 <div>
78 <div class="checkbox"> 82 <div class="checkbox">
79 <label> 83 <label>
80 <input id="autofillEnabled" pref="autofill.enabled" 84 <input id="autofillEnabled" pref="autofill.enabled"
81 metric="Options_FormAutofill" type="checkbox"> 85 metric="Options_FormAutofill" type="checkbox">
82 <span i18n-content="autofillEnabled"></span> 86 <span i18n-content="autofillEnabled"></span>
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 </div> 140 </div>
137 <div id="themes-gallery-div"> 141 <div id="themes-gallery-div">
138 <a id="themes-gallery" i18n-content="themesGallery" 142 <a id="themes-gallery" i18n-content="themesGallery"
139 i18n-values="href:themesGalleryURL" target="_blank"></a> 143 i18n-values="href:themesGalleryURL" target="_blank"></a>
140 </div> 144 </div>
141 </div> 145 </div>
142 </section> 146 </section>
143 </if> 147 </if>
144 148
145 </div> 149 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698