| 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/classe
s/iron-flex-layout.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"> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 min-height: var(--settings-row-min-height); | 33 min-height: var(--settings-row-min-height); |
| 34 } | 34 } |
| 35 | 35 |
| 36 settings-bluetooth-add-device-dialog, | 36 settings-bluetooth-add-device-dialog, |
| 37 settings-bluetooth-pair-device-dialog { | 37 settings-bluetooth-pair-device-dialog { |
| 38 height: 400px; | 38 height: 400px; |
| 39 padding: 0; | 39 padding: 0; |
| 40 width: 500px; | 40 width: 500px; |
| 41 } | 41 } |
| 42 </style> | 42 </style> |
| 43 <settings-animated-pages id="pages" current-route="{{currentRoute}}" | 43 <settings-animated-pages id="pages" section="bluetooth"> |
| 44 section="bluetooth"> | |
| 45 <neon-animatable id="main"> | 44 <neon-animatable id="main"> |
| 46 <div class="settings-box first"> | 45 <div class="settings-box first"> |
| 47 <div class="layout horizontal center flex"> | 46 <div class="layout horizontal center flex"> |
| 48 <iron-icon icon="settings:bluetooth"></iron-icon> | 47 <iron-icon icon="settings:bluetooth"></iron-icon> |
| 49 <span class="flex">$i18n{bluetoothEnable}</span> | 48 <span class="flex">$i18n{bluetoothEnable}</span> |
| 50 <cr-expand-button id="expandListButton" | 49 <cr-expand-button id="expandListButton" |
| 51 hidden$="[[!bluetoothEnabled]]" | 50 hidden$="[[!bluetoothEnabled]]" |
| 52 expanded="{{deviceListExpanded}}"> | 51 expanded="{{deviceListExpanded}}"> |
| 53 </cr-expand-button> | 52 </cr-expand-button> |
| 54 <paper-toggle-button id="enableBluetooth" | 53 <paper-toggle-button id="enableBluetooth" |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 error-message="[[errorMessage]]" | 92 error-message="[[errorMessage]]" |
| 94 on-device-event="onDeviceEvent_" | 93 on-device-event="onDeviceEvent_" |
| 95 on-response="onResponse_" | 94 on-response="onResponse_" |
| 96 pairing-device="[[pairingDevice]]" | 95 pairing-device="[[pairingDevice]]" |
| 97 pairing-event="[[pairingEvent]]"> | 96 pairing-event="[[pairingEvent]]"> |
| 98 </bluetooth-device-dialog> | 97 </bluetooth-device-dialog> |
| 99 | 98 |
| 100 </template> | 99 </template> |
| 101 <script src="bluetooth_page.js"></script> | 100 <script src="bluetooth_page.js"></script> |
| 102 </dom-module> | 101 </dom-module> |
| OLD | NEW |