| Index: components/sync/protocol/printer_specifics.proto
|
| diff --git a/components/sync/protocol/printer_specifics.proto b/components/sync/protocol/printer_specifics.proto
|
| index e0881b71dd56b355ff42511fa9a22ba9d084f94e..16d4f96c582bf26e80957e3f034789b2c7cb3def 100644
|
| --- a/components/sync/protocol/printer_specifics.proto
|
| +++ b/components/sync/protocol/printer_specifics.proto
|
| @@ -18,9 +18,13 @@ message PrinterPPDReference {
|
| // Url for user provided file. Overrides other fields.
|
| optional string user_supplied_ppd_url = 1;
|
|
|
| - // Make and model to reference into PPD Server.
|
| - optional string effective_manufacturer = 2;
|
| - optional string effective_model = 3;
|
| + // Retired fields
|
| + optional string effective_manufacturer = 2 [deprecated = true];
|
| + optional string effective_model = 3 [deprecated = true];
|
| +
|
| + // String identifying the type of printer, used to look up a ppd to drive the
|
| + // printer.
|
| + optional string effective_make_and_model = 4;
|
| }
|
|
|
| message PrinterSpecifics {
|
|
|