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

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

Issue 2464403003: [CUPS] Implement the "Printers" section in chrome://settings. (Closed)
Patch Set: . Created 4 years, 1 month 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 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_ico n.html"> 7 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_ico n.html">
8 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.h tml"> 8 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.h tml">
9 <include src="secondary_user_banner.html"> 9 <include src="secondary_user_banner.html">
10 <section id="network-section-cros"> 10 <section id="network-section-cros">
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after
755 <h3 i18n-content="advancedSectionTitleCertificates"></h3> 755 <h3 i18n-content="advancedSectionTitleCertificates"></h3>
756 <div> 756 <div>
757 <if expr="use_nss_certs or is_win or is_macosx"> 757 <if expr="use_nss_certs or is_win or is_macosx">
758 <div class="settings-row"> 758 <div class="settings-row">
759 <button id="certificatesManageButton" 759 <button id="certificatesManageButton"
760 i18n-content="certificatesManageButton"></button> 760 i18n-content="certificatesManageButton"></button>
761 </div> 761 </div>
762 </if> 762 </if>
763 </div> 763 </div>
764 </section> 764 </section>
765 <!--TODO(xdai): Remove this "cups-printers-section" section in M57. -->
stevenjb 2016/11/04 00:01:28 Why will we remove just this section in M57? Event
xdai1 2016/11/04 00:07:41 I see. Removed the TODO.
766 <if expr="chromeos">
767 <section id="cups-printers-section" hidden>
768 <h3 i18n-content="advancedSectionTitleCupsPrint"></h3>
769 <div class="settings-row">
770 <span i18n-content="cupsPrintOptionLabel"></span>
771 <a target="_blank" i18n-content="learnMore"
772 i18n-values="href:cupsPrintLearnMoreURL">
773 </a>
774 </div>
775 <div class="settings-row">
776 <button id="cupsPrintersManageButton"
777 i18n-content="cupsPrintersManageButton"></button>
778 </div>
779 </section>
780 </if>
765 <if expr="enable_service_discovery"> 781 <if expr="enable_service_discovery">
766 <section id="cloudprint-options-mdns"> 782 <section id="cloudprint-options-mdns">
767 <h3 i18n-content="advancedSectionTitleCloudPrint"></h3> 783 <h3 i18n-content="advancedSectionTitleCloudPrint"></h3>
768 <div class="settings-row"> 784 <div class="settings-row">
769 <span i18n-content="cloudPrintOptionLabel"></span> 785 <span i18n-content="cloudPrintOptionLabel"></span>
770 <a target="_blank" i18n-content="learnMore" 786 <a target="_blank" i18n-content="learnMore"
771 i18n-values="href:cloudPrintLearnMoreURL"></a> 787 i18n-values="href:cloudPrintLearnMoreURL"></a>
772 </div> 788 </div>
773 <div class="settings-row"> 789 <div class="settings-row">
774 <button id="cloudPrintDevicesPageButton" 790 <button id="cloudPrintDevicesPageButton"
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
1118 </button> 1134 </button>
1119 </div> 1135 </div>
1120 </section> 1136 </section>
1121 </div> <!-- advanced-settings-container --> 1137 </div> <!-- advanced-settings-container -->
1122 </div> <!-- advanced-settings --> 1138 </div> <!-- advanced-settings -->
1123 <footer id="advanced-settings-footer"> 1139 <footer id="advanced-settings-footer">
1124 <a is="action-link" id="advanced-settings-expander" 1140 <a is="action-link" id="advanced-settings-expander"
1125 i18n-content="showAdvancedSettings"></a> 1141 i18n-content="showAdvancedSettings"></a>
1126 </footer> 1142 </footer>
1127 </div> 1143 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698