| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.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-input/paper-input
.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 6 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> | 6 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> |
| 7 | 7 |
| 8 <dom-module id="settings-bluetooth-pair-device-dialog"> | 8 <dom-module id="settings-bluetooth-pair-device-dialog"> |
| 9 <link rel="import" type="css" href="bluetooth_page.css"> | |
| 10 <link rel="import" type="css" href="bluetooth_dialog.css"> | 9 <link rel="import" type="css" href="bluetooth_dialog.css"> |
| 11 <template> | 10 <template> |
| 12 <style include="settings-shared"></style> | 11 <style include="settings-shared"></style> |
| 13 <div id="dialogOuterDiv" class="layout vertical flex"> | 12 <div id="dialogOuterDiv" class="layout vertical flex"> |
| 14 <div id="dialogHeaderDiv" class="settings-box layout horizontal center"> | 13 <div id="dialogHeaderDiv" class="settings-box layout horizontal center"> |
| 15 <span id="dialogTitle" class="flex" | 14 <span id="dialogTitle" class="flex" |
| 16 i18n-content="bluetoothPairDevicePageTitle"> | 15 i18n-content="bluetoothPairDevicePageTitle"> |
| 17 </span> | 16 </span> |
| 18 <paper-icon-button icon="close" on-tap="onCancelTap_" id="close"> | 17 <paper-icon-button icon="close" on-tap="onCancelTap_" id="close"> |
| 19 </paper-icon-button> | 18 </paper-icon-button> |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 on-tap="onDismissTap_"> | 59 on-tap="onDismissTap_"> |
| 61 </paper-button> | 60 </paper-button> |
| 62 <paper-button i18n-content="cancel" on-tap="onCancelTap_" | 61 <paper-button i18n-content="cancel" on-tap="onCancelTap_" |
| 63 hidden$="[[showDismiss_(pairingDevice, pairingEvent)]]"> | 62 hidden$="[[showDismiss_(pairingDevice, pairingEvent)]]"> |
| 64 </paper-button> | 63 </paper-button> |
| 65 </div> | 64 </div> |
| 66 </div> | 65 </div> |
| 67 </template> | 66 </template> |
| 68 <script src="bluetooth_pair_device_dialog.js"></script> | 67 <script src="bluetooth_pair_device_dialog.js"></script> |
| 69 </dom-module> | 68 </dom-module> |
| OLD | NEW |