| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 7 <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"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
| 9 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
dicator.html"> | 9 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
dicator.html"> |
| 10 <link rel="import" href="/icons.html"> | 10 <link rel="import" href="/icons.html"> |
| 11 <link rel="import" href="/settings_page/settings_animated_pages.html"> | 11 <link rel="import" href="/settings_page/settings_animated_pages.html"> |
| 12 <link rel="import" href="/settings_shared_css.html"> | 12 <link rel="import" href="/settings_shared_css.html"> |
| 13 <link rel="import" href="bluetooth_device_dialog.html"> | 13 <link rel="import" href="bluetooth_device_dialog.html"> |
| 14 <link rel="import" href="bluetooth_device_list_item.html"> | 14 <link rel="import" href="bluetooth_device_list_item.html"> |
| 15 | 15 |
| 16 <dom-module id="settings-bluetooth-page"> | 16 <dom-module id="settings-bluetooth-page"> |
| 17 <template> | 17 <template> |
| 18 <style include="settings-shared"> | 18 <style include="iron-flex iron-flex-alignment settings-shared"> |
| 19 iron-icon { | 19 iron-icon { |
| 20 -webkit-margin-end: var(--iron-icon-spacing); | 20 -webkit-margin-end: var(--iron-icon-spacing); |
| 21 } | 21 } |
| 22 | 22 |
| 23 cr-expand-button { | 23 cr-expand-button { |
| 24 -webkit-margin-end: 10px; | 24 -webkit-margin-end: 10px; |
| 25 } | 25 } |
| 26 | 26 |
| 27 #deviceList { | 27 #deviceList { |
| 28 max-height: 300px; | 28 max-height: 300px; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 error-message="[[errorMessage]]" | 92 error-message="[[errorMessage]]" |
| 93 on-device-event="onDeviceEvent_" | 93 on-device-event="onDeviceEvent_" |
| 94 on-response="onResponse_" | 94 on-response="onResponse_" |
| 95 pairing-device="[[pairingDevice]]" | 95 pairing-device="[[pairingDevice]]" |
| 96 pairing-event="[[pairingEvent]]"> | 96 pairing-event="[[pairingEvent]]"> |
| 97 </bluetooth-device-dialog> | 97 </bluetooth-device-dialog> |
| 98 | 98 |
| 99 </template> | 99 </template> |
| 100 <script src="bluetooth_page.js"></script> | 100 <script src="bluetooth_page.js"></script> |
| 101 </dom-module> | 101 </dom-module> |
| OLD | NEW |