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