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

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

Issue 15966004: cros: Move kiosk settings to extensions page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase and remove temp flag Created 7 years, 6 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="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 <if expr="not pp_ifdef('chromeos')"> 5 <if expr="not pp_ifdef('chromeos')">
6 <include src="sync_section.html"> 6 <include src="sync_section.html">
7 </if> 7 </if>
8 <if expr="pp_ifdef('chromeos')"> 8 <if expr="pp_ifdef('chromeos')">
9 <section> 9 <section>
10 <h3 i18n-content="sectionTitleInternet"></h3> 10 <h3 i18n-content="sectionTitleInternet"></h3>
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 <section id="factory-reset-section" hidden> 665 <section id="factory-reset-section" hidden>
666 <h3 i18n-content="factoryResetTitle"></h3> 666 <h3 i18n-content="factoryResetTitle"></h3>
667 <div> 667 <div>
668 <span class="settings-row" i18n-content="factoryResetDescription"> 668 <span class="settings-row" i18n-content="factoryResetDescription">
669 </span> 669 </span>
670 <button id="factory-reset-restart" 670 <button id="factory-reset-restart"
671 i18n-content="factoryResetRestart"> 671 i18n-content="factoryResetRestart">
672 </button> 672 </button>
673 </div> 673 </div>
674 </section> 674 </section>
675 <section id="kiosk-section" hidden>
676 <h3 i18n-content="advancedSectionTitleKiosk"></h3>
677 <div>
678 <button id="manage-kiosk-apps-button"
679 i18n-content="manageKioskAppsButton">
680 </button>
681 </div>
682 </section>
683 </if> 675 </if>
684 </if> 676 </if>
685 <if expr="not pp_ifdef('chromeos')"> 677 <if expr="not pp_ifdef('chromeos')">
686 <section id="system-section"> 678 <section id="system-section">
687 <h3 i18n-content="advancedSectionTitleSystem"></h3> 679 <h3 i18n-content="advancedSectionTitleSystem"></h3>
688 <if expr="not is_macosx"> 680 <if expr="not is_macosx">
689 <div class="checkbox"> 681 <div class="checkbox">
690 <span class="controlled-setting-with-label"> 682 <span class="controlled-setting-with-label">
691 <input id="backgroundModeCheckbox" pref="background_mode.enabled" 683 <input id="backgroundModeCheckbox" pref="background_mode.enabled"
692 type="checkbox"> 684 type="checkbox">
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 </div> 719 </div>
728 </section> 720 </section>
729 </div> <!-- advanced-settings-container --> 721 </div> <!-- advanced-settings-container -->
730 </div> <!-- advanced-settings --> 722 </div> <!-- advanced-settings -->
731 <footer> 723 <footer>
732 <button id="advanced-settings-expander" class="link-button" 724 <button id="advanced-settings-expander" class="link-button"
733 i18n-content="showAdvancedSettings"> 725 i18n-content="showAdvancedSettings">
734 </button> 726 </button>
735 </footer> 727 </footer>
736 </div> 728 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698