• Home
  • Raw
  • Download

Lines Matching refs:new_value

490   sync_pb::BookmarkSpecifics new_value = GetBookmarkSpecifics();  in SetURL()  local
491 new_value.set_url(url.spec()); in SetURL()
492 SetBookmarkSpecifics(new_value); in SetURL()
496 const sync_pb::AppSpecifics& new_value) { in SetAppSpecifics() argument
498 PutAppSpecificsAndMarkForSyncing(new_value); in SetAppSpecifics()
502 const sync_pb::AutofillSpecifics& new_value) { in SetAutofillSpecifics() argument
504 PutAutofillSpecificsAndMarkForSyncing(new_value); in SetAutofillSpecifics()
508 const sync_pb::AutofillSpecifics& new_value) { in PutAutofillSpecificsAndMarkForSyncing() argument
510 entity_specifics.MutableExtension(sync_pb::autofill)->CopyFrom(new_value); in PutAutofillSpecificsAndMarkForSyncing()
516 const sync_pb::AutofillProfileSpecifics& new_value) { in SetAutofillProfileSpecifics() argument
518 PutAutofillProfileSpecificsAndMarkForSyncing(new_value); in SetAutofillProfileSpecifics()
522 const sync_pb::AutofillProfileSpecifics& new_value) { in PutAutofillProfileSpecificsAndMarkForSyncing() argument
525 new_value); in PutAutofillProfileSpecificsAndMarkForSyncing()
531 const sync_pb::BookmarkSpecifics& new_value) { in SetBookmarkSpecifics() argument
533 PutBookmarkSpecificsAndMarkForSyncing(new_value); in SetBookmarkSpecifics()
537 const sync_pb::BookmarkSpecifics& new_value) { in PutBookmarkSpecificsAndMarkForSyncing() argument
539 entity_specifics.MutableExtension(sync_pb::bookmark)->CopyFrom(new_value); in PutBookmarkSpecificsAndMarkForSyncing()
545 const sync_pb::NigoriSpecifics& new_value) { in SetNigoriSpecifics() argument
547 PutNigoriSpecificsAndMarkForSyncing(new_value); in SetNigoriSpecifics()
551 const sync_pb::NigoriSpecifics& new_value) { in PutNigoriSpecificsAndMarkForSyncing() argument
553 entity_specifics.MutableExtension(sync_pb::nigori)->CopyFrom(new_value); in PutNigoriSpecificsAndMarkForSyncing()
577 sync_pb::PasswordSpecifics new_value; in SetPasswordSpecifics() local
578 if (!cryptographer->Encrypt(data, new_value.mutable_encrypted())) { in SetPasswordSpecifics()
581 PutPasswordSpecificsAndMarkForSyncing(new_value); in SetPasswordSpecifics()
585 const sync_pb::PreferenceSpecifics& new_value) { in SetPreferenceSpecifics() argument
587 PutPreferenceSpecificsAndMarkForSyncing(new_value); in SetPreferenceSpecifics()
591 const sync_pb::ThemeSpecifics& new_value) { in SetThemeSpecifics() argument
593 PutThemeSpecificsAndMarkForSyncing(new_value); in SetThemeSpecifics()
597 const sync_pb::SessionSpecifics& new_value) { in SetSessionSpecifics() argument
599 PutSessionSpecificsAndMarkForSyncing(new_value); in SetSessionSpecifics()
610 const sync_pb::PasswordSpecifics& new_value) { in PutPasswordSpecificsAndMarkForSyncing() argument
612 entity_specifics.MutableExtension(sync_pb::password)->CopyFrom(new_value); in PutPasswordSpecificsAndMarkForSyncing()
617 const sync_pb::PreferenceSpecifics& new_value) { in PutPreferenceSpecificsAndMarkForSyncing() argument
619 entity_specifics.MutableExtension(sync_pb::preference)->CopyFrom(new_value); in PutPreferenceSpecificsAndMarkForSyncing()
625 const sync_pb::TypedUrlSpecifics& new_value) { in SetTypedUrlSpecifics() argument
627 PutTypedUrlSpecificsAndMarkForSyncing(new_value); in SetTypedUrlSpecifics()
631 const sync_pb::ExtensionSpecifics& new_value) { in SetExtensionSpecifics() argument
633 PutExtensionSpecificsAndMarkForSyncing(new_value); in SetExtensionSpecifics()
637 const sync_pb::AppSpecifics& new_value) { in PutAppSpecificsAndMarkForSyncing() argument
639 entity_specifics.MutableExtension(sync_pb::app)->CopyFrom(new_value); in PutAppSpecificsAndMarkForSyncing()
645 const sync_pb::ThemeSpecifics& new_value) { in PutThemeSpecificsAndMarkForSyncing() argument
647 entity_specifics.MutableExtension(sync_pb::theme)->CopyFrom(new_value); in PutThemeSpecificsAndMarkForSyncing()
653 const sync_pb::TypedUrlSpecifics& new_value) { in PutTypedUrlSpecificsAndMarkForSyncing() argument
655 entity_specifics.MutableExtension(sync_pb::typed_url)->CopyFrom(new_value); in PutTypedUrlSpecificsAndMarkForSyncing()
661 const sync_pb::ExtensionSpecifics& new_value) { in PutExtensionSpecificsAndMarkForSyncing() argument
663 entity_specifics.MutableExtension(sync_pb::extension)->CopyFrom(new_value); in PutExtensionSpecificsAndMarkForSyncing()
669 const sync_pb::SessionSpecifics& new_value) { in PutSessionSpecificsAndMarkForSyncing() argument
671 entity_specifics.MutableExtension(sync_pb::session)->CopyFrom(new_value); in PutSessionSpecificsAndMarkForSyncing()
921 sync_pb::BookmarkSpecifics new_value = GetBookmarkSpecifics(); in SetFaviconBytes() local
922 new_value.set_favicon(bytes.empty() ? NULL : &bytes[0], bytes.size()); in SetFaviconBytes()
923 SetBookmarkSpecifics(new_value); in SetFaviconBytes()