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

Unified Diff: chrome/browser/resources/settings/printing_page/cups_add_printer_dialog_util.js

Issue 2790603003: Make CUPS USB printing play better with the settings page. This change does several things: (Closed)
Patch Set: Address xdai@ comments Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/printing_page/cups_add_printer_dialog_util.js
diff --git a/chrome/browser/resources/settings/printing_page/cups_add_printer_dialog_util.js b/chrome/browser/resources/settings/printing_page/cups_add_printer_dialog_util.js
index ecf3558a5e0d8cb1cc9c93d75cf36c8a863d4fa9..f12795a22bd264badbb037d19a907a8416a33f80 100644
--- a/chrome/browser/resources/settings/printing_page/cups_add_printer_dialog_util.js
+++ b/chrome/browser/resources/settings/printing_page/cups_add_printer_dialog_util.js
@@ -14,7 +14,7 @@ Polymer({
},
/** @type {!CupsPrinterInfo} */
- selectedPrinter: {
+ newPrinter: {
type: Object,
notify: true,
},
@@ -25,7 +25,7 @@ Polymer({
* @private
*/
onSelect_: function(event) {
- this.selectedPrinter = event.model.item;
+ this.newPrinter = event.model.item;
},
});

Powered by Google App Engine
This is Rietveld 408576698