| OLD | NEW |
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 3 <link rel="import" href="/controls/settings_checkbox.html"> |
| 4 <link rel="import" href="/settings_shared_css.html"> |
| 5 |
| 6 <dom-module id="settings-printing-page"> |
| 7 <template> |
| 8 <style include="settings-shared"></style> |
| 9 <div class="settings-box first"> |
| 10 <span> |
| 11 $i18n{printingCloudPrintLearnMoreLabel} |
| 12 <a href="$i18n{printingCloudPrintLearnMoreUrl}" target="_blank"> |
| 13 $i18n{learnMore} |
| 14 </a> |
| 15 </span> |
| 16 </div> |
| 17 <div class="settings-box"> |
| 18 <settings-checkbox pref="{{prefs.local_discovery.notifications_enabled}}" |
| 19 label="$i18n{printingNotificationsLabel}"></settings-checkbox> |
| 20 </div> |
| 21 <div class="settings-box"> |
| 22 <paper-button class="primary-button" on-tap="onManageTap_"> |
| 23 $i18n{printingManageCloudPrintDevices} |
| 24 </paper-button> |
| 25 </div> |
| 26 </template> |
| 27 <script src="printing_page.js"></script> |
| 28 </dom-module> |
| OLD | NEW |