| OLD | NEW |
| 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 #ifndef COMPONENTS_SYNC_PROTOCOL_PROTO_VISITORS_H_ | 5 #ifndef COMPONENTS_SYNC_PROTOCOL_PROTO_VISITORS_H_ |
| 6 #define COMPONENTS_SYNC_PROTOCOL_PROTO_VISITORS_H_ | 6 #define COMPONENTS_SYNC_PROTOCOL_PROTO_VISITORS_H_ |
| 7 | 7 |
| 8 #include "components/sync/protocol/app_list_specifics.pb.h" | 8 #include "components/sync/protocol/app_list_specifics.pb.h" |
| 9 #include "components/sync/protocol/app_notification_specifics.pb.h" | 9 #include "components/sync/protocol/app_notification_specifics.pb.h" |
| 10 #include "components/sync/protocol/app_setting_specifics.pb.h" | 10 #include "components/sync/protocol/app_setting_specifics.pb.h" |
| (...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 674 | 674 |
| 675 VISIT_PROTO_FIELDS(const sync_pb::PrinterSpecifics& proto) { | 675 VISIT_PROTO_FIELDS(const sync_pb::PrinterSpecifics& proto) { |
| 676 VISIT(id); | 676 VISIT(id); |
| 677 VISIT(display_name); | 677 VISIT(display_name); |
| 678 VISIT(description); | 678 VISIT(description); |
| 679 VISIT(manufacturer); | 679 VISIT(manufacturer); |
| 680 VISIT(model); | 680 VISIT(model); |
| 681 VISIT(uri); | 681 VISIT(uri); |
| 682 VISIT(uuid); | 682 VISIT(uuid); |
| 683 VISIT(ppd_reference); | 683 VISIT(ppd_reference); |
| 684 VISIT(make_and_model); |
| 684 } | 685 } |
| 685 | 686 |
| 686 VISIT_PROTO_FIELDS(const sync_pb::PriorityPreferenceSpecifics& proto) { | 687 VISIT_PROTO_FIELDS(const sync_pb::PriorityPreferenceSpecifics& proto) { |
| 687 VISIT(preference); | 688 VISIT(preference); |
| 688 } | 689 } |
| 689 | 690 |
| 690 VISIT_PROTO_FIELDS(const sync_pb::ReadingListSpecifics& proto) { | 691 VISIT_PROTO_FIELDS(const sync_pb::ReadingListSpecifics& proto) { |
| 691 VISIT(entry_id); | 692 VISIT(entry_id); |
| 692 VISIT(title); | 693 VISIT(title); |
| 693 VISIT(url); | 694 VISIT(url); |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 | 936 |
| 936 } // namespace syncer | 937 } // namespace syncer |
| 937 | 938 |
| 938 #undef VISIT_ | 939 #undef VISIT_ |
| 939 #undef VISIT_BYTES | 940 #undef VISIT_BYTES |
| 940 #undef VISIT_ENUM | 941 #undef VISIT_ENUM |
| 941 #undef VISIT | 942 #undef VISIT |
| 942 #undef VISIT_REP | 943 #undef VISIT_REP |
| 943 | 944 |
| 944 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_VISITORS_H_ | 945 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_VISITORS_H_ |
| OLD | NEW |