| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 | 198 |
| 199 VISIT_PROTO_FIELDS(const sync_pb::ArcPackageSpecifics& proto) { | 199 VISIT_PROTO_FIELDS(const sync_pb::ArcPackageSpecifics& proto) { |
| 200 VISIT(package_name); | 200 VISIT(package_name); |
| 201 VISIT(package_version); | 201 VISIT(package_version); |
| 202 VISIT(last_backup_android_id); | 202 VISIT(last_backup_android_id); |
| 203 VISIT(last_backup_time); | 203 VISIT(last_backup_time); |
| 204 } | 204 } |
| 205 | 205 |
| 206 VISIT_PROTO_FIELDS(const sync_pb::PrinterPPDReference& proto) { | 206 VISIT_PROTO_FIELDS(const sync_pb::PrinterPPDReference& proto) { |
| 207 VISIT(user_supplied_ppd_url); | 207 VISIT(user_supplied_ppd_url); |
| 208 VISIT(effective_manufacturer); | 208 VISIT(effective_make_and_model); |
| 209 VISIT(effective_model); | |
| 210 } | 209 } |
| 211 | 210 |
| 212 VISIT_PROTO_FIELDS(const sync_pb::ReadingListSpecifics& proto) { | 211 VISIT_PROTO_FIELDS(const sync_pb::ReadingListSpecifics& proto) { |
| 213 VISIT(entry_id); | 212 VISIT(entry_id); |
| 214 VISIT(title); | 213 VISIT(title); |
| 215 VISIT(url); | 214 VISIT(url); |
| 216 VISIT(creation_time_us); | 215 VISIT(creation_time_us); |
| 217 VISIT(update_time_us); | 216 VISIT(update_time_us); |
| 218 VISIT_ENUM(status); | 217 VISIT_ENUM(status); |
| 219 } | 218 } |
| (...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 885 | 884 |
| 886 } // namespace syncer | 885 } // namespace syncer |
| 887 | 886 |
| 888 #undef VISIT_ | 887 #undef VISIT_ |
| 889 #undef VISIT_BYTES | 888 #undef VISIT_BYTES |
| 890 #undef VISIT_ENUM | 889 #undef VISIT_ENUM |
| 891 #undef VISIT | 890 #undef VISIT |
| 892 #undef VISIT_REP | 891 #undef VISIT_REP |
| 893 | 892 |
| 894 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_VISITORS_H_ | 893 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_VISITORS_H_ |
| OLD | NEW |