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

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

Issue 7057030: Disable and turn off autofill for guest mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix the missing semicolon. :p Created 9 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/resources/options/personal_options.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <if expr="pp_ifdef('chromeos')"> 3 <if expr="pp_ifdef('chromeos')">
4 <section> 4 <section>
5 <h3 i18n-content="account"></h3> 5 <h3 i18n-content="account"></h3>
6 <div> 6 <div>
7 <table class="option-control-table"> 7 <table class="option-control-table">
8 <tr> 8 <tr>
9 <td> 9 <td>
10 <img id='account-picture' 10 <img id='account-picture'
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 configured by the IT administrator. --> 79 configured by the IT administrator. -->
80 <input name="password_allow_show_hidden" type="text" 80 <input name="password_allow_show_hidden" type="text"
81 pref="profile.password_manager_allow_show_passwords" hidden> 81 pref="profile.password_manager_allow_show_passwords" hidden>
82 </div> 82 </div>
83 </section> 83 </section>
84 <section> 84 <section>
85 <h3 i18n-content="autofill"></h3> 85 <h3 i18n-content="autofill"></h3>
86 <div> 86 <div>
87 <div class="checkbox"> 87 <div class="checkbox">
88 <label> 88 <label>
89 <input id="autofillEnabled" pref="autofill.enabled" 89 <input id="autofill-enabled" pref="autofill.enabled"
90 metric="Options_FormAutofill" type="checkbox"> 90 metric="Options_FormAutofill" type="checkbox">
91 <span i18n-content="autofillEnabled"></span> 91 <span i18n-content="autofillEnabled"></span>
92 </label> 92 </label>
93 </div> 93 </div>
94 <button id="autofill-settings" 94 <button id="autofill-settings"
95 i18n-content="manageAutofillSettings"></button> 95 i18n-content="manageAutofillSettings"></button>
96 </div> 96 </div>
97 </section> 97 </section>
98 <if expr="not pp_ifdef('chromeos')"> 98 <if expr="not pp_ifdef('chromeos')">
99 <section> 99 <section>
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 </div> 145 </div>
146 <div id="themes-gallery-div"> 146 <div id="themes-gallery-div">
147 <a id="themes-gallery" i18n-content="themesGallery" 147 <a id="themes-gallery" i18n-content="themesGallery"
148 i18n-values="href:themesGalleryURL" target="_blank"></a> 148 i18n-values="href:themesGalleryURL" target="_blank"></a>
149 </div> 149 </div>
150 </div> 150 </div>
151 </section> 151 </section>
152 </if> 152 </if>
153 153
154 </div> 154 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options/personal_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698