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

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, 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 </div> 244 </div>
245 </div> 245 </div>
246 </section> 246 </section>
247 247
248 <section id="device-control-section" hidden> 248 <section id="device-control-section" hidden>
249 <h3 i18n-content="deviceControlTitle"></h3> 249 <h3 i18n-content="deviceControlTitle"></h3>
250 <div id="consumer-management-section"> 250 <div id="consumer-management-section">
251 <div class="settings-row"> 251 <div class="settings-row">
252 <span i18n-content="consumerManagementDescription"></span> 252 <span i18n-content="consumerManagementDescription"></span>
253 </div> 253 </div>
254 <div id="consumer-management-enroll" class="settings-row"> 254 <div class="settings-row">
255 <button i18n-content="consumerManagementEnrollButton"></button> 255 <button id="consumer-management-button"></button>
256 </div>
257 <div id="consumer-management-unenroll" class="settings-row" hidden>
258 <button i18n-content="consumerManagementUnenrollButton"></button>
259 </div> 256 </div>
260 </div> 257 </div>
261 </section> 258 </section>
262 </if> 259 </if>
263 <section id="privacy-section"> 260 <section id="privacy-section">
264 <h3 i18n-content="advancedSectionTitlePrivacy"></h3> 261 <h3 i18n-content="advancedSectionTitlePrivacy"></h3>
265 <div> 262 <div>
266 <div class="settings-row"> 263 <div class="settings-row">
267 <button id="privacyContentSettingsButton" 264 <button id="privacyContentSettingsButton"
268 i18n-content="privacyContentSettingsButton"></button> 265 i18n-content="privacyContentSettingsButton"></button>
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after
859 <button id="advanced-settings-expander" class="link-button" 856 <button id="advanced-settings-expander" class="link-button"
860 i18n-content="showAdvancedSettings"> 857 i18n-content="showAdvancedSettings">
861 </button> 858 </button>
862 <if expr="chromeos"> 859 <if expr="chromeos">
863 <button id="version-button" class="link-button" hidden 860 <button id="version-button" class="link-button" hidden
864 i18n-content="browserVersion"> 861 i18n-content="browserVersion">
865 </button> 862 </button>
866 </if> 863 </if>
867 </footer> 864 </footer>
868 </div> 865 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698