Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html

Issue 2221073004: Replace deprecated iron-flex-layout/classes with iron-flex-layout-class in MD Settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo ^ Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
2 <link rel="import" href="chrome://resources/html/cr.html"> 2 <link rel="import" href="chrome://resources/html/cr.html">
3 <link rel="import" href="chrome://resources/html/polymer.html"> 3 <link rel="import" href="chrome://resources/html/polymer.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-selector/iron-sele ctor.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele ctor.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 6 <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-icon-button/paper -icon-button.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html">
10 <link rel="import" href="/bluetooth_page/bluetooth_device_list_item.html"> 10 <link rel="import" href="/bluetooth_page/bluetooth_device_list_item.html">
11 <link rel="import" href="/icons.html"> 11 <link rel="import" href="/icons.html">
12 <link rel="import" href="/settings_shared_css.html"> 12 <link rel="import" href="/settings_shared_css.html">
13 13
14 <dom-module id="bluetooth-device-dialog"> 14 <dom-module id="bluetooth-device-dialog">
15 <template> 15 <template>
16 <style include="settings-shared"> 16 <style include="iron-flex settings-shared">
17 #pairing { 17 #pairing {
18 margin-bottom: 10px; 18 margin-bottom: 10px;
19 } 19 }
20 20
21 #pairing paper-input { 21 #pairing paper-input {
22 text-align: center; 22 text-align: center;
23 } 23 }
24 24
25 #pinDiv { 25 #pinDiv {
26 margin-top: 10px; 26 margin-top: 10px;
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 </template> 159 </template>
160 <template is="dom-if" if="[[isDialogType_(dialogId, 'connectError')]]"> 160 <template is="dom-if" if="[[isDialogType_(dialogId, 'connectError')]]">
161 <paper-button on-tap="close">$i18n{bluetoothDismiss} 161 <paper-button on-tap="close">$i18n{bluetoothDismiss}
162 </paper-button> 162 </paper-button>
163 </template> 163 </template>
164 </div> 164 </div>
165 </dialog> 165 </dialog>
166 </template> 166 </template>
167 <script src="/bluetooth_page/bluetooth_device_dialog.js"></script> 167 <script src="/bluetooth_page/bluetooth_device_dialog.js"></script>
168 </dom-module> 168 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698