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

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

Issue 2884863002: Add an autoconf field to printer objects. (Closed)
Patch Set: grammar Created 3 years, 7 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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
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