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

Side by Side Diff: chrome/browser/resources/settings/site_settings/media_picker.html

Issue 2512393002: ChromeOS OOBE: switch from iron-dropdown to <select>. (Closed)
Patch Set: Created 4 years, 1 month 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/html/md_select_css.html">
1 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="/md_select_css.html">
3 <link rel="import" href="/settings_shared_css.html"> 3 <link rel="import" href="/settings_shared_css.html">
4 <link rel="import" href="/settings_vars_css.html">
4 5
5 <dom-module id="media-picker"> 6 <dom-module id="media-picker">
6 <template> 7 <template>
7 <style include="settings-shared md-select"> 8 <style include="settings-shared md-select">
8 :host { 9 :host {
9 display: block; 10 display: block;
10 } 11 }
11 </style> 12 </style>
12 <div class="settings-box" id="picker" hidden> 13 <div class="settings-box" id="picker" hidden>
13 <div class="md-select-wrapper"> 14 <div class="md-select-wrapper">
14 <select id="mediaPicker" class="md-select" on-change="onChange_"> 15 <select id="mediaPicker" class="md-select" on-change="onChange_">
15 <template is="dom-repeat" items="[[devices]]"> 16 <template is="dom-repeat" items="[[devices]]">
16 <option value$="[[item.id]]">[[item.name]]</option> 17 <option value$="[[item.id]]">[[item.name]]</option>
17 </template> 18 </template>
18 <select> 19 <select>
19 <span class="md-select-underline"></span> 20 <span class="md-select-underline"></span>
20 </div> 21 </div>
21 </div> 22 </div>
22 </template> 23 </template>
23 <script src="media_picker.js"></script> 24 <script src="media_picker.js"></script>
24 </dom-module> 25 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698