| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> |
| 4 | 5 |
| 5 <link rel="import" href="../i18n_setup.html"> | 6 <link rel="import" href="../i18n_setup.html"> |
| 6 <link rel="import" href="../settings_shared_css.html"> | 7 <link rel="import" href="../settings_shared_css.html"> |
| 7 <link rel="import" href="site_settings_behavior.html"> | 8 <link rel="import" href="site_settings_behavior.html"> |
| 8 <link rel="import" href="site_settings_prefs_browser_proxy.html"> | 9 <link rel="import" href="site_settings_prefs_browser_proxy.html"> |
| 9 | 10 |
| 10 <dom-module id="usb-devices"> | 11 <dom-module id="usb-devices"> |
| 11 <template> | 12 <template> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 39 | 40 |
| 40 <dialog is="cr-action-menu"> | 41 <dialog is="cr-action-menu"> |
| 41 <button class="dropdown-item" role="option" on-tap="onRemoveTap_" id="remo
veButton"> | 42 <button class="dropdown-item" role="option" on-tap="onRemoveTap_" id="remo
veButton"> |
| 42 $i18n{handlerRemove} | 43 $i18n{handlerRemove} |
| 43 </button> | 44 </button> |
| 44 </dialog> | 45 </dialog> |
| 45 | 46 |
| 46 </template> | 47 </template> |
| 47 <script src="usb_devices.js"></script> | 48 <script src="usb_devices.js"></script> |
| 48 </dom-module> | 49 </dom-module> |
| OLD | NEW |