Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(405)

Side by Side Diff: components/sync/protocol/proto_visitors.h

Issue 2956173002: Introduce the field make_and_model for synced printers. (Closed)
Patch Set: done Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/sync/protocol/printer_specifics.proto ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « components/sync/protocol/printer_specifics.proto ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698