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

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

Issue 493613002: Add an enrolling state for consumer management section in settings page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dn
Patch Set: Created 6 years, 4 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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 </div> 276 </div>
277 </div> 277 </div>
278 </section> 278 </section>
279 279
280 <section id="device-control-section" hidden> 280 <section id="device-control-section" hidden>
281 <h3 i18n-content="deviceControlTitle"></h3> 281 <h3 i18n-content="deviceControlTitle"></h3>
282 <div id="consumer-management-section"> 282 <div id="consumer-management-section">
283 <div class="settings-row"> 283 <div class="settings-row">
284 <span i18n-content="consumerManagementDescription"></span> 284 <span i18n-content="consumerManagementDescription"></span>
285 </div> 285 </div>
286 <div id="consumer-management-enroll" class="settings-row"> 286 <div class="settings-row">
287 <button i18n-content="consumerManagementEnrollButton"></button> 287 <button id="consumer-management-button"></button>
288 </div>
289 <div id="consumer-management-unenroll" class="settings-row" hidden>
290 <button i18n-content="consumerManagementUnenrollButton"></button>
291 </div> 288 </div>
292 </div> 289 </div>
293 </section> 290 </section>
294 </if> 291 </if>
295 <section id="privacy-section"> 292 <section id="privacy-section">
296 <h3 i18n-content="advancedSectionTitlePrivacy"></h3> 293 <h3 i18n-content="advancedSectionTitlePrivacy"></h3>
297 <div> 294 <div>
298 <div class="settings-row"> 295 <div class="settings-row">
299 <button id="privacyContentSettingsButton" 296 <button id="privacyContentSettingsButton"
300 i18n-content="privacyContentSettingsButton"></button> 297 i18n-content="privacyContentSettingsButton"></button>
(...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after
976 <button id="advanced-settings-expander" class="link-button" 973 <button id="advanced-settings-expander" class="link-button"
977 i18n-content="showAdvancedSettings"> 974 i18n-content="showAdvancedSettings">
978 </button> 975 </button>
979 <if expr="chromeos"> 976 <if expr="chromeos">
980 <button id="version-button" class="link-button" hidden 977 <button id="version-button" class="link-button" hidden
981 i18n-content="browserVersion"> 978 i18n-content="browserVersion">
982 </button> 979 </button>
983 </if> 980 </if>
984 </footer> 981 </footer>
985 </div> 982 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698