| 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 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 803 VISIT(favicon_url); | 803 VISIT(favicon_url); |
| 804 VISIT_ENUM(blocked_state); | 804 VISIT_ENUM(blocked_state); |
| 805 VISIT_REP(content_pack_categories); | 805 VISIT_REP(content_pack_categories); |
| 806 VISIT(http_status_code); | 806 VISIT(http_status_code); |
| 807 VISIT(obsolete_referrer_policy); | 807 VISIT(obsolete_referrer_policy); |
| 808 VISIT(is_restored); | 808 VISIT(is_restored); |
| 809 VISIT_REP(navigation_redirect); | 809 VISIT_REP(navigation_redirect); |
| 810 VISIT(last_navigation_redirect_url); | 810 VISIT(last_navigation_redirect_url); |
| 811 VISIT(correct_referrer_policy); | 811 VISIT(correct_referrer_policy); |
| 812 VISIT_ENUM(password_state); | 812 VISIT_ENUM(password_state); |
| 813 VISIT(task_id); |
| 814 VISIT_REP(ancestor_task_id); |
| 813 } | 815 } |
| 814 | 816 |
| 815 VISIT_PROTO_FIELDS(const sync_pb::ThemeSpecifics& proto) { | 817 VISIT_PROTO_FIELDS(const sync_pb::ThemeSpecifics& proto) { |
| 816 VISIT(use_custom_theme); | 818 VISIT(use_custom_theme); |
| 817 VISIT(use_system_theme_by_default); | 819 VISIT(use_system_theme_by_default); |
| 818 VISIT(custom_theme_name); | 820 VISIT(custom_theme_name); |
| 819 VISIT(custom_theme_id); | 821 VISIT(custom_theme_id); |
| 820 VISIT(custom_theme_update_url); | 822 VISIT(custom_theme_update_url); |
| 821 } | 823 } |
| 822 | 824 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 | 902 |
| 901 } // namespace syncer | 903 } // namespace syncer |
| 902 | 904 |
| 903 #undef VISIT_ | 905 #undef VISIT_ |
| 904 #undef VISIT_BYTES | 906 #undef VISIT_BYTES |
| 905 #undef VISIT_ENUM | 907 #undef VISIT_ENUM |
| 906 #undef VISIT | 908 #undef VISIT |
| 907 #undef VISIT_REP | 909 #undef VISIT_REP |
| 908 | 910 |
| 909 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_VISITORS_H_ | 911 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_VISITORS_H_ |
| OLD | NEW |