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

Side by Side Diff: chrome/browser/resources/settings/printing_page/cups_printers_list.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/cr_elements/cr_action_menu/cr_action _menu.html"> 1 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html">
2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 2 <link rel="import" href="chrome://resources/cr_elements/icons.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/paper-icon-button/paper -icon-button.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
5 <link rel="import" href="/printing_page/cups_printers_browser_proxy.html"> 5 <link rel="import" href="cups_printers_browser_proxy.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-list"> 8 <dom-module id="settings-cups-printers-list">
9 <template> 9 <template>
10 <style include="settings-shared"> 10 <style include="settings-shared">
11 #container { 11 #container {
12 border-top: 1px solid lightgray; 12 border-top: 1px solid lightgray;
13 display: flex; 13 display: flex;
14 padding: 2px 20px; 14 padding: 2px 20px;
15 } 15 }
16 16
(...skipping 22 matching lines...) Expand all
39 <span class="name" id="printer-name">[[item.printerName]]</span> 39 <span class="name" id="printer-name">[[item.printerName]]</span>
40 <!--TODO(xdai): Add icon for enterprise CUPS printer. --> 40 <!--TODO(xdai): Add icon for enterprise CUPS printer. -->
41 </div> 41 </div>
42 <paper-icon-button icon="cr:more-vert" on-tap="onOpenActionMenuTap_"> 42 <paper-icon-button icon="cr:more-vert" on-tap="onOpenActionMenuTap_">
43 </paper-icon-button> 43 </paper-icon-button>
44 </div> 44 </div>
45 </template> 45 </template>
46 </template> 46 </template>
47 <script src="cups_printers_list.js"></script> 47 <script src="cups_printers_list.js"></script>
48 </dom-module> 48 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698