| 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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 VISIT_PROTO_FIELDS(const sync_pb::WalletMaskedCreditCard& proto) { | 568 VISIT_PROTO_FIELDS(const sync_pb::WalletMaskedCreditCard& proto) { |
| 569 VISIT(id); | 569 VISIT(id); |
| 570 VISIT_ENUM(status); | 570 VISIT_ENUM(status); |
| 571 VISIT(name_on_card); | 571 VISIT(name_on_card); |
| 572 VISIT_ENUM(type); | 572 VISIT_ENUM(type); |
| 573 VISIT(last_four); | 573 VISIT(last_four); |
| 574 VISIT(exp_month); | 574 VISIT(exp_month); |
| 575 VISIT(exp_year); | 575 VISIT(exp_year); |
| 576 VISIT(billing_address_id); | 576 VISIT(billing_address_id); |
| 577 VISIT_ENUM(card_class); | 577 VISIT_ENUM(card_class); |
| 578 VISIT(bank_name); |
| 578 } | 579 } |
| 579 | 580 |
| 580 VISIT_PROTO_FIELDS(const sync_pb::WalletPostalAddress& proto) { | 581 VISIT_PROTO_FIELDS(const sync_pb::WalletPostalAddress& proto) { |
| 581 VISIT(id); | 582 VISIT(id); |
| 582 VISIT(recipient_name); | 583 VISIT(recipient_name); |
| 583 VISIT(company_name); | 584 VISIT(company_name); |
| 584 VISIT_REP(street_address); | 585 VISIT_REP(street_address); |
| 585 VISIT(address_1); | 586 VISIT(address_1); |
| 586 VISIT(address_2); | 587 VISIT(address_2); |
| 587 VISIT(address_3); | 588 VISIT(address_3); |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 884 | 885 |
| 885 } // namespace syncer | 886 } // namespace syncer |
| 886 | 887 |
| 887 #undef VISIT_ | 888 #undef VISIT_ |
| 888 #undef VISIT_BYTES | 889 #undef VISIT_BYTES |
| 889 #undef VISIT_ENUM | 890 #undef VISIT_ENUM |
| 890 #undef VISIT | 891 #undef VISIT |
| 891 #undef VISIT_REP | 892 #undef VISIT_REP |
| 892 | 893 |
| 893 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_VISITORS_H_ | 894 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_VISITORS_H_ |
| OLD | NEW |