Home | History | Annotate | Download | only in engine

Lines Matching full:new_value

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