OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 // | |
5 // Sync protocol datatype extension for printer data. | |
6 | |
7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change | |
8 // any fields in this file. | |
9 | |
10 syntax = "proto2"; | |
11 | |
12 option optimize_for = LITE_RUNTIME; | |
13 | |
14 package sync_pb; | |
15 | |
16 // Properties of PPDs associated with printers. | |
17 message PrinterPPDData { | |
18 optional int32 id = 1 [default = 0]; | |
Nicolas Zea
2016/09/07 00:18:04
Please add descriptions for each of these fields y
skau
2016/09/09 19:02:15
Done.
| |
19 optional string file_name = 2; | |
20 optional int64 version_number = 3; | |
21 optional bool from_quirks_server = 4 [default = false]; | |
22 } | |
23 | |
24 message PrinterSpecifics { | |
25 optional string id = 1; | |
26 optional string display_name = 2; | |
27 optional string description = 3; | |
28 optional string manufacturer = 4; | |
29 optional string model = 5; | |
30 optional string uri = 6; | |
31 optional string uuid = 7; | |
32 optional PrinterPPDData ppd = 8; | |
33 } | |
OLD | NEW |