| Index: chrome/browser/resources/settings/printing_page/cups_printers_list.js
|
| diff --git a/chrome/browser/resources/settings/printing_page/cups_printers_list.js b/chrome/browser/resources/settings/printing_page/cups_printers_list.js
|
| index 7ce3f04513e4c4c4d2fd8281ad3870eff18a8c76..06aa208a0a3afc1c28bd9b5a68048f24e0b15d10 100644
|
| --- a/chrome/browser/resources/settings/printing_page/cups_printers_list.js
|
| +++ b/chrome/browser/resources/settings/printing_page/cups_printers_list.js
|
| @@ -64,8 +64,8 @@ Polymer({
|
| onRemoveTap_: function(event) {
|
| var index = this.printers.indexOf(assert(this.activePrinter_));
|
| this.splice('printers', index, 1);
|
| - this.browserProxy_.removeCupsPrinter(this.activePrinter_.printerId,
|
| - this.activePrinter_.printerName);
|
| + this.browserProxy_.removeCupsPrinter(
|
| + this.activePrinter_.printerId, this.activePrinter_.printerName);
|
| this.closeDropdownMenu_();
|
| },
|
|
|
|
|