| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/action_link.html"> | 1 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 2 <link rel="import" href="chrome://resources/html/action_link_css.html"> | 2 <link rel="import" href="chrome://resources/html/action_link_css.html"> |
| 3 <link rel="import" href="chrome://resources/html/assert.html"> |
| 4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 5 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="cups_add_printer_dialog.html"> | 6 <link rel="import" href="cups_add_printer_dialog.html"> |
| 5 <link rel="import" href="cups_printers_list.html"> | 7 <link rel="import" href="cups_printers_list.html"> |
| 6 <link rel="import" href="../settings_shared_css.html"> | 8 <link rel="import" href="../settings_shared_css.html"> |
| 7 | 9 |
| 8 <dom-module id="settings-cups-printers"> | 10 <dom-module id="settings-cups-printers"> |
| 9 <template> | 11 <template> |
| 10 <style include="settings-shared action-link"> | 12 <style include="settings-shared action-link"> |
| 11 .settings-box .start { | 13 .settings-box .start { |
| 12 color: var(--paper-grey-600); | 14 color: var(--paper-grey-600); |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 <div class="center" id="addPrinterErrorMessage" hidden> | 75 <div class="center" id="addPrinterErrorMessage" hidden> |
| 74 <span>$i18n{printerAddedFailedMessage}</span> | 76 <span>$i18n{printerAddedFailedMessage}</span> |
| 75 <a is="action-link" on-tap="onAddPrinterTap_"> | 77 <a is="action-link" on-tap="onAddPrinterTap_"> |
| 76 $i18n{printerAddedTryAgainMessage} | 78 $i18n{printerAddedTryAgainMessage} |
| 77 </a> | 79 </a> |
| 78 </div> | 80 </div> |
| 79 </div> | 81 </div> |
| 80 </template> | 82 </template> |
| 81 <script src="cups_printers.js"></script> | 83 <script src="cups_printers.js"></script> |
| 82 </dom-module> | 84 </dom-module> |
| OLD | NEW |