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

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

Issue 2664503004: MD Settings: Make all HTML import href's relative. (Closed)
Patch Set: resolve more conflicts Created 3 years, 10 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/action_link.html"> 1 <link rel="import" href="chrome://resources/html/action_link.html">
2 <link rel="import" href="chrome://resources/html/action_link_css.html"> 2 <link rel="import" href="chrome://resources/html/action_link_css.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="/printing_page/cups_add_printer_dialog.html"> 4 <link rel="import" href="cups_add_printer_dialog.html">
5 <link rel="import" href="/printing_page/cups_printers_list.html"> 5 <link rel="import" href="cups_printers_list.html">
6 <link rel="import" href="/settings_shared_css.html"> 6 <link rel="import" href="../settings_shared_css.html">
7 7
8 <dom-module id="settings-cups-printers"> 8 <dom-module id="settings-cups-printers">
9 <template> 9 <template>
10 <style include="settings-shared action-link"> 10 <style include="settings-shared action-link">
11 .settings-box .start { 11 .settings-box .start {
12 color: var(--paper-grey-500); 12 color: var(--paper-grey-500);
13 } 13 }
14 14
15 .settings-box .start .secondary { 15 .settings-box .start .secondary {
16 color: var(--paper-grey-800); 16 color: var(--paper-grey-800);
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 <div class="center" id="addPrinterErrorMessage" hidden> 72 <div class="center" id="addPrinterErrorMessage" hidden>
73 <span>$i18n{printerAddedFailedMessage}</span> 73 <span>$i18n{printerAddedFailedMessage}</span>
74 <a is="action-link" on-tap="onAddPrinterTap_"> 74 <a is="action-link" on-tap="onAddPrinterTap_">
75 $i18n{printerAddedTryAgainMessage} 75 $i18n{printerAddedTryAgainMessage}
76 </a> 76 </a>
77 </div> 77 </div>
78 </div> 78 </div>
79 </template> 79 </template>
80 <script src="cups_printers.js"></script> 80 <script src="cups_printers.js"></script>
81 </dom-module> 81 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698