| Index: components/sync/protocol/proto_visitors.h
|
| diff --git a/components/sync/protocol/proto_visitors.h b/components/sync/protocol/proto_visitors.h
|
| index 4f9da7374f9c8cc583eda08b01441f3baf144ffb..b0ba973c4b50b819ece66395f7d0cfb31084c483 100644
|
| --- a/components/sync/protocol/proto_visitors.h
|
| +++ b/components/sync/protocol/proto_visitors.h
|
| @@ -540,6 +540,16 @@ VISIT_PROTO_FIELDS(const sync_pb::KeystoreEncryptionFlags& proto) {
|
| VISIT(enabled);
|
| }
|
|
|
| +VISIT_PROTO_FIELDS(const sync_pb::LanguageDetection::Language& proto) {
|
| + VISIT(language_code);
|
| + VISIT(is_reliable);
|
| +}
|
| +
|
| +VISIT_PROTO_FIELDS(const sync_pb::LanguageDetection& proto) {
|
| + VISIT_REP(detected_languages);
|
| + VISIT(adopted_language);
|
| +}
|
| +
|
| VISIT_PROTO_FIELDS(const sync_pb::LinkedAppIconInfo& proto) {
|
| VISIT(url);
|
| VISIT(size);
|
| @@ -861,6 +871,7 @@ VISIT_PROTO_FIELDS(const sync_pb::UserEventSpecifics& proto) {
|
| VISIT(navigation_id);
|
| VISIT(session_id);
|
| VISIT(field_trial_event);
|
| + VISIT(language_detection);
|
| }
|
|
|
| VISIT_PROTO_FIELDS(const sync_pb::WalletMaskedCreditCard& proto) {
|
|
|