| 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/iron-selector/iron-sele
ctor.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> |
| 4 <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-button/paper-butt
on.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.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-add-device-dialog"> | 8 <dom-module id="settings-bluetooth-add-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"> | 13 <div id="dialogHeaderDiv" class="settings-box layout horizontal"> |
| 15 <span id="dialogTitle" class="flex" | 14 <span id="dialogTitle" class="flex" |
| 16 i18n-content="bluetoothAddDevicePageTitle"> | 15 i18n-content="bluetoothAddDevicePageTitle"> |
| 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 21 matching lines...) Expand all Loading... |
| 41 <span i18n-content="bluetoothScanning"></span> | 40 <span i18n-content="bluetoothScanning"></span> |
| 42 </div> | 41 </div> |
| 43 <paper-button id="cancel" class="end-justified" | 42 <paper-button id="cancel" class="end-justified" |
| 44 i18n-content="cancel" on-tap="onCancelTap_"> | 43 i18n-content="cancel" on-tap="onCancelTap_"> |
| 45 </paper-button> | 44 </paper-button> |
| 46 </div> | 45 </div> |
| 47 </div> | 46 </div> |
| 48 </template> | 47 </template> |
| 49 <script src="bluetooth_add_device_dialog.js"></script> | 48 <script src="bluetooth_add_device_dialog.js"></script> |
| 50 </dom-module> | 49 </dom-module> |
| OLD | NEW |