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

Side by Side Diff: chrome/browser/resources/settings/printing_page/cups_add_printer_dialog.html

Issue 2502773003: ChromeOS OOBE: switch from iron-dropdown to <select>. (Closed)
Patch Set: Fix polymer load order 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="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">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
4 <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">
5 <link rel="import" href="/i18n_setup.html"> 6 <link rel="import" href="/i18n_setup.html">
6 <link rel="import" href="/md_select_css.html">
7 <link rel="import" href="/printing_page/cups_add_printer_dialog_util.html"> 7 <link rel="import" href="/printing_page/cups_add_printer_dialog_util.html">
8 <link rel="import" href="/printing_page/cups_printers_browser_proxy.html"> 8 <link rel="import" href="/printing_page/cups_printers_browser_proxy.html">
9 <link rel="import" href="/settings_shared_css.html"> 9 <link rel="import" href="/settings_shared_css.html">
10 <link rel="import" href="/settings_vars_css.html">
10 11
11 <dom-module id="add-printer-discovery-dialog"> 12 <dom-module id="add-printer-discovery-dialog">
12 <template> 13 <template>
13 <style include="settings-shared"> 14 <style include="settings-shared">
14 add-printer-list { 15 add-printer-list {
15 max-height: 310px; 16 max-height: 310px;
16 overflow-y: auto; 17 overflow-y: auto;
17 position: absolute; 18 position: absolute;
18 width: 100%; 19 width: 100%;
19 } 20 }
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 <!-- Manufacturer and Model Dialog --> 369 <!-- Manufacturer and Model Dialog -->
369 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp> 370 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp>
370 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}" 371 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}"
371 setup-failed="[[setupFailed]]"> 372 setup-failed="[[setupFailed]]">
372 </add-printer-manufacturer-model-dialog> 373 </add-printer-manufacturer-model-dialog>
373 </template> 374 </template>
374 375
375 </template> 376 </template>
376 <script src="cups_add_printer_dialog.js"></script> 377 <script src="cups_add_printer_dialog.js"></script>
377 </dom-module> 378 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698