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

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

Issue 2889333002: [MD settings] move polymer.html imports to top of file (Closed)
Patch Set: rerun Created 3 years, 7 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/html/polymer.html">
2
1 <link rel="import" href="chrome://resources/html/action_link.html"> 3 <link rel="import" href="chrome://resources/html/action_link.html">
2 <link rel="import" href="chrome://resources/html/action_link_css.html"> 4 <link rel="import" href="chrome://resources/html/action_link_css.html">
3 <link rel="import" href="chrome://resources/html/assert.html"> 5 <link rel="import" href="chrome://resources/html/assert.html">
4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> 6 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html">
5 <link rel="import" href="chrome://resources/html/polymer.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-button/paper-butt on.html">
7 <link rel="import" href="cups_add_printer_dialog.html"> 8 <link rel="import" href="cups_add_printer_dialog.html">
8 <link rel="import" href="cups_printers_list.html"> 9 <link rel="import" href="cups_printers_list.html">
9 <link rel="import" href="../settings_shared_css.html"> 10 <link rel="import" href="../settings_shared_css.html">
10 11
11 <dom-module id="settings-cups-printers"> 12 <dom-module id="settings-cups-printers">
12 <template> 13 <template>
13 <style include="settings-shared action-link"> 14 <style include="settings-shared action-link">
14 .settings-box .start { 15 .settings-box .start {
15 color: var(--paper-grey-600); 16 color: var(--paper-grey-600);
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 <div class="center" id="addPrinterErrorMessage" hidden> 80 <div class="center" id="addPrinterErrorMessage" hidden>
80 <span>$i18n{printerAddedFailedMessage}</span> 81 <span>$i18n{printerAddedFailedMessage}</span>
81 <a is="action-link" on-tap="onAddPrinterTap_"> 82 <a is="action-link" on-tap="onAddPrinterTap_">
82 $i18n{printerAddedTryAgainMessage} 83 $i18n{printerAddedTryAgainMessage}
83 </a> 84 </a>
84 </div> 85 </div>
85 </div> 86 </div>
86 </template> 87 </template>
87 <script src="cups_printers.js"></script> 88 <script src="cups_printers.js"></script>
88 </dom-module> 89 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698