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

Side by Side Diff: chrome/browser/resources/settings/printing_page/cups_printers_browser_proxy.js

Issue 2962413002: Separate manufacturer and model fields from PPD info (Closed)
Patch Set: rebase Created 3 years, 5 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 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview A helper object used from the "CUPS printing" section to 6 * @fileoverview A helper object used from the "CUPS printing" section to
7 * interact with the browser. 7 * interact with the browser.
8 */ 8 */
9 9
10 /** 10 /**
11 * @typedef {{ 11 * @typedef {{
12 * ppdManufacturer: string,
13 * ppdModel: string,
12 * printerAddress: string, 14 * printerAddress: string,
13 * printerAutoconf: boolean, 15 * printerAutoconf: boolean,
14 * printerDescription: string, 16 * printerDescription: string,
15 * printerId: string, 17 * printerId: string,
16 * printerManufacturer: string, 18 * printerManufacturer: string,
17 * printerModel: string, 19 * printerModel: string,
18 * printerName: string, 20 * printerName: string,
19 * printerPPDPath: string, 21 * printerPPDPath: string,
20 * printerProtocol: string, 22 * printerProtocol: string,
21 * printerQueue: string, 23 * printerQueue: string,
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 } 171 }
170 } 172 }
171 173
172 cr.addSingletonGetter(CupsPrintersBrowserProxyImpl); 174 cr.addSingletonGetter(CupsPrintersBrowserProxyImpl);
173 175
174 return { 176 return {
175 CupsPrintersBrowserProxy: CupsPrintersBrowserProxy, 177 CupsPrintersBrowserProxy: CupsPrintersBrowserProxy,
176 CupsPrintersBrowserProxyImpl: CupsPrintersBrowserProxyImpl, 178 CupsPrintersBrowserProxyImpl: CupsPrintersBrowserProxyImpl,
177 }; 179 };
178 }); 180 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698