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

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

Issue 518063002: Settings to control Add Person and Browse as Guest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
OLDNEW
1 <div id="settings" class="page" hidden> 1 <div id="settings" class="page" hidden>
2 <header> 2 <header>
3 <h1 i18n-content="settingsTitle"></h1> 3 <h1 i18n-content="settingsTitle"></h1>
4 </header> 4 </header>
5 <include src="automatic_settings_reset_banner.html"> 5 <include src="automatic_settings_reset_banner.html">
6 <if expr="chromeos"> 6 <if expr="chromeos">
7 <include src="secondary_user_banner.html"> 7 <include src="secondary_user_banner.html">
8 <section> 8 <section>
9 <div id="network-section-header" class="section-header"> 9 <div id="network-section-header" class="section-header">
10 <h3 i18n-content="sectionTitleInternet"></h3> 10 <h3 i18n-content="sectionTitleInternet"></h3>
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 <section id="sync-users-section" guest-visibility="hidden"> 201 <section id="sync-users-section" guest-visibility="hidden">
202 <h3 i18n-content="sectionTitleUsers"></h3> 202 <h3 i18n-content="sectionTitleUsers"></h3>
203 <if expr="chromeos"> 203 <if expr="chromeos">
204 <include src="sync_section.html"> 204 <include src="sync_section.html">
205 </if> 205 </if>
206 <div id="profiles-section" hidden> 206 <div id="profiles-section" hidden>
207 <list id="profiles-list" class="settings-list" hidden></list> 207 <list id="profiles-list" class="settings-list" hidden></list>
208 <div id="profiles-single-message" class="settings-row" 208 <div id="profiles-single-message" class="settings-row"
209 i18n-content="profilesSingleUser"> 209 i18n-content="profilesSingleUser">
210 </div> 210 </div>
211 <if expr="not chromeos">
212 <div id="profiles-enable-guest" class="checkbox">
213 <input id="profile-browser-guest-enable"
214 pref="profile.browser_guest_enabled" type="checkbox">
Marc Treib 2014/09/01 08:49:53 Hm, I think a supervised user could change the pre
Mike Lerman 2014/09/02 16:58:29 Yes, found one! Done.
215 <span>
216 <label for="browser-guest-enable"
Evan Stade 2014/08/30 01:15:36 structure should be <label> // no for= <input>
Mike Lerman 2014/09/02 16:58:29 Done.
217 i18n-content="profileBrowserGuestEnable">
218 </label>
219 </span>
220 </div>
221 <div id="profiles-enable-add-person" class="checkbox">
222 <input id="profile-add-person-enable"
223 pref="profile.add_person_enabled" type="checkbox">
224 <span>
225 <label for="add-person-enable"
226 i18n-content="profileAddPersonEnable">
227 </label>
228 </span>
229 </div>
230 </if>
211 <div id="profiles-buttons"> 231 <div id="profiles-buttons">
212 <button id="profiles-create" i18n-content="profilesCreate"></button> 232 <button id="profiles-create" i18n-content="profilesCreate"></button>
213 <if expr="enable_settings_app"> 233 <if expr="enable_settings_app">
214 <button id="profiles-app-list-switch" 234 <button id="profiles-app-list-switch"
215 i18n-content="profilesAppListSwitch" hidden> 235 i18n-content="profilesAppListSwitch" hidden>
216 </button> 236 </button>
217 </if> 237 </if>
218 <button id="profiles-manage" i18n-content="profilesManage" disabled> 238 <button id="profiles-manage" i18n-content="profilesManage" disabled>
219 </button> 239 </button>
220 <button id="profiles-delete" i18n-content="profilesDelete"></button> 240 <button id="profiles-delete" i18n-content="profilesDelete"></button>
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
976 <button id="advanced-settings-expander" class="link-button" 996 <button id="advanced-settings-expander" class="link-button"
977 i18n-content="showAdvancedSettings"> 997 i18n-content="showAdvancedSettings">
978 </button> 998 </button>
979 <if expr="chromeos"> 999 <if expr="chromeos">
980 <button id="version-button" class="link-button" hidden 1000 <button id="version-button" class="link-button" hidden
981 i18n-content="browserVersion"> 1001 i18n-content="browserVersion">
982 </button> 1002 </button>
983 </if> 1003 </if>
984 </footer> 1004 </footer>
985 </div> 1005 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698