| 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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 } | 662 } |
| 663 | 663 |
| 664 VISIT_PROTO_FIELDS(const sync_pb::PreferenceSpecifics& proto) { | 664 VISIT_PROTO_FIELDS(const sync_pb::PreferenceSpecifics& proto) { |
| 665 VISIT(name); | 665 VISIT(name); |
| 666 VISIT(value); | 666 VISIT(value); |
| 667 } | 667 } |
| 668 | 668 |
| 669 VISIT_PROTO_FIELDS(const sync_pb::PrinterPPDReference& proto) { | 669 VISIT_PROTO_FIELDS(const sync_pb::PrinterPPDReference& proto) { |
| 670 VISIT(user_supplied_ppd_url); | 670 VISIT(user_supplied_ppd_url); |
| 671 VISIT(effective_make_and_model); | 671 VISIT(effective_make_and_model); |
| 672 VISIT(autoconf); |
| 672 } | 673 } |
| 673 | 674 |
| 674 VISIT_PROTO_FIELDS(const sync_pb::PrinterSpecifics& proto) { | 675 VISIT_PROTO_FIELDS(const sync_pb::PrinterSpecifics& proto) { |
| 675 VISIT(id); | 676 VISIT(id); |
| 676 VISIT(display_name); | 677 VISIT(display_name); |
| 677 VISIT(description); | 678 VISIT(description); |
| 678 VISIT(manufacturer); | 679 VISIT(manufacturer); |
| 679 VISIT(model); | 680 VISIT(model); |
| 680 VISIT(uri); | 681 VISIT(uri); |
| 681 VISIT(uuid); | 682 VISIT(uuid); |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 924 | 925 |
| 925 } // namespace syncer | 926 } // namespace syncer |
| 926 | 927 |
| 927 #undef VISIT_ | 928 #undef VISIT_ |
| 928 #undef VISIT_BYTES | 929 #undef VISIT_BYTES |
| 929 #undef VISIT_ENUM | 930 #undef VISIT_ENUM |
| 930 #undef VISIT | 931 #undef VISIT |
| 931 #undef VISIT_REP | 932 #undef VISIT_REP |
| 932 | 933 |
| 933 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_VISITORS_H_ | 934 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_VISITORS_H_ |
| OLD | NEW |