Lines Matching defs:autofill

12 #include "chrome/browser/autofill/personal_data_manager.h"
31 int64 id, const sync_pb::AutofillSpecifics& autofill)
34 autofill_(autofill) { }
74 "Server did not create the top-level autofill node. "
106 "Failed to create autofill sync node.");
179 "Bogus delete notification generate for autofill entry " + tag;
213 DCHECK(changes[i].specifics.HasExtension(sync_pb::autofill))
215 const sync_pb::AutofillSpecifics& autofill =
216 changes[i].specifics.GetExtension(sync_pb::autofill);
217 if (autofill.has_value() ||
218 (autofill_profile_not_migrated && autofill.has_profile())) {
221 autofill));
240 const sync_pb::AutofillSpecifics& autofill(
243 if (autofill.has_value() ||
244 (autofill_profile_not_migrated && autofill.has_profile())) {
246 sync_id, autofill));
295 "Could not update autofill entries.");
305 const sync_pb::AutofillSpecifics& autofill) {
307 UTF8ToUTF16(autofill.name()), UTF8ToUTF16(autofill.value()))) {
309 "Could not remove autofill node.");
316 const sync_pb::AutofillSpecifics& autofill,
322 size_t timestamps_size = autofill.usage_timestamp_size();
325 base::Time::FromInternalValue(autofill.usage_timestamp(c)));
327 AutofillKey k(UTF8ToUTF16(autofill.name()), UTF8ToUTF16(autofill.value()));
354 NOTREACHED() << "Couldn't add autofill profile: " << guid;
381 LOG(ERROR) << "Couldn't update autofill profile: " << guid;
434 sync_pb::AutofillSpecifics autofill;
435 autofill.set_name(UTF16ToUTF8(entry.key().name()));
436 autofill.set_value(UTF16ToUTF8(entry.key().value()));
440 autofill.add_usage_timestamp(timestamp->ToInternalValue());
442 node->SetAutofillSpecifics(autofill);