| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 5 <link rel="import" href="/printing_page/cups_printers_browser_proxy.html"> | 5 <link rel="import" href="cups_printers_browser_proxy.html"> |
| 6 <link rel="import" href="/settings_shared_css.html"> | 6 <link rel="import" href="../settings_shared_css.html"> |
| 7 | 7 |
| 8 <dom-module id="settings-cups-printers-list"> | 8 <dom-module id="settings-cups-printers-list"> |
| 9 <template> | 9 <template> |
| 10 <style include="settings-shared"> | 10 <style include="settings-shared"> |
| 11 #container { | 11 #container { |
| 12 border-top: 1px solid lightgray; | 12 border-top: 1px solid lightgray; |
| 13 display: flex; | 13 display: flex; |
| 14 padding: 2px 20px; | 14 padding: 2px 20px; |
| 15 } | 15 } |
| 16 | 16 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 39 <span class="name" id="printer-name">[[item.printerName]]</span> | 39 <span class="name" id="printer-name">[[item.printerName]]</span> |
| 40 <!--TODO(xdai): Add icon for enterprise CUPS printer. --> | 40 <!--TODO(xdai): Add icon for enterprise CUPS printer. --> |
| 41 </div> | 41 </div> |
| 42 <paper-icon-button icon="cr:more-vert" on-tap="onOpenActionMenuTap_"> | 42 <paper-icon-button icon="cr:more-vert" on-tap="onOpenActionMenuTap_"> |
| 43 </paper-icon-button> | 43 </paper-icon-button> |
| 44 </div> | 44 </div> |
| 45 </template> | 45 </template> |
| 46 </template> | 46 </template> |
| 47 <script src="cups_printers_list.js"></script> | 47 <script src="cups_printers_list.js"></script> |
| 48 </dom-module> | 48 </dom-module> |
| OLD | NEW |