| 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/i18n_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 7 <link rel="import" href="../settings_shared_css.html"> | 8 <link rel="import" href="../settings_shared_css.html"> |
| 8 | 9 |
| 9 <dom-module id="bluetooth-device-list-item"> | 10 <dom-module id="bluetooth-device-list-item"> |
| 10 <style include="settings-shared"> | 11 <style include="settings-shared"> |
| 11 .name[connected] { | 12 .name[connected] { |
| 12 font-weight: 500; | 13 font-weight: 500; |
| 13 } | 14 } |
| 14 | 15 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 41 </button> | 42 </button> |
| 42 <button class="dropdown-item" role="option" on-tap="onRemoveTap_"> | 43 <button class="dropdown-item" role="option" on-tap="onRemoveTap_"> |
| 43 $i18n{bluetoothRemove} | 44 $i18n{bluetoothRemove} |
| 44 </button> | 45 </button> |
| 45 </dialog> | 46 </dialog> |
| 46 </div> | 47 </div> |
| 47 </div> | 48 </div> |
| 48 </template> | 49 </template> |
| 49 <script src="bluetooth_device_list_item.js"></script> | 50 <script src="bluetooth_device_list_item.js"></script> |
| 50 </dom-module> | 51 </dom-module> |
| OLD | NEW |