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