blob: 6d89dcda46113355ff02f2ea573b88029739837e [file] [log] [blame]
<link rel="import" href="chrome://resources/html/polymer.html">
<link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action_menu.html">
<link rel="import" href="chrome://resources/html/list_property_update_behavior.html">
<link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
<link rel="import" href="cups_printer_types.html">
<link rel="import" href="cups_printers_browser_proxy.html">
<link rel="import" href="cups_printers_entry_list.html">
<link rel="import" href="cups_printers_entry_list_behavior.html">
<link rel="import" href="../settings_shared_css.html">
<dom-module id="settings-cups-saved-printers">
<template>
<cr-action-menu>
<button id="editButton" class="dropdown-item" on-click="onEditTap_">
$i18n{editPrinter}
</button>
<button id="removeButton" class="dropdown-item" on-click="onRemoveTap_">
$i18n{removePrinter}
</button>
</cr-action-menu>
<style include="settings-shared"></style>
<settings-cups-printers-entry-list printers="[[savedPrinters]]"
search-term="[[searchTerm]]">
</settings-cups-printers-entry-list>
</template>
<script src="cups_saved_printers.js"></script>
</dom-module>