Searched defs:autofill (Results 1 - 10 of 10) sorted by relevance

/external/chromium/chrome/browser/autofill/
H A Dselect_control_handler.h9 #include "chrome/browser/autofill/field_types.h"
18 namespace autofill { namespace
32 } // namespace autofill
H A Dform_field.h13 #include "chrome/browser/autofill/autofill_type.h"
170 namespace autofill { namespace
176 } // namespace autofill
H A Dselect_control_handler.cc5 #include "chrome/browser/autofill/select_control_handler.h"
13 #include "chrome/browser/autofill/autofill_country.h"
14 #include "chrome/browser/autofill/autofill_profile.h"
15 #include "chrome/browser/autofill/form_group.h"
198 namespace autofill { namespace
245 } // namespace autofill
H A Dform_field.cc5 #include "chrome/browser/autofill/form_field.h"
15 #include "chrome/browser/autofill/address_field.h"
16 #include "chrome/browser/autofill/autofill_field.h"
17 #include "chrome/browser/autofill/credit_card_field.h"
18 #include "chrome/browser/autofill/field_types.h"
19 #include "chrome/browser/autofill/form_structure.h"
20 #include "chrome/browser/autofill/name_field.h"
21 #include "chrome/browser/autofill/phone_field.h"
73 namespace autofill { namespace
88 } // namespace autofill
[all...]
/external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
H A DAutoFillHostAndroid.cpp29 #include "autofill/WebAutofill.h"
33 AutoFillHostAndroid::AutoFillHostAndroid(WebAutofill* autofill) argument
34 : mAutofill(autofill)
/external/chromium/chrome/browser/password_manager/
H A Dpassword_store_win.cc126 PasswordForm* autofill = new PasswordForm(form); local
127 autofill->username_value = username;
128 autofill->password_value = password;
129 autofill->preferred = true;
130 autofill->ssl_valid = form.origin.SchemeIsSecure();
131 autofill->date_created = info.date_created;
134 password_store_->AddLoginImpl(*autofill);
135 return autofill;
/external/chromium/chrome/browser/sync/glue/
H A Dautofill_change_processor.cc12 #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 = local
216 changes[i].specifics.GetExtension(sync_pb::autofill);
217 if (autofill
30 AutofillChangeRecord(sync_api::SyncManager::ChangeRecord::Action action, int64 id, const sync_pb::AutofillSpecifics& autofill) argument
304 ApplySyncAutofillEntryDelete( const sync_pb::AutofillSpecifics& autofill) argument
314 ApplySyncAutofillEntryChange( sync_api::SyncManager::ChangeRecord::Action action, const sync_pb::AutofillSpecifics& autofill, std::vector<AutofillEntry>* new_entries, int64 sync_id) argument
434 sync_pb::AutofillSpecifics autofill; local
[all...]
H A Dautofill_profile_model_associator.cc97 const sync_pb::AutofillProfileSpecifics& autofill(
99 if (OverwriteProfileWithServerData(*ix, autofill)) {
149 LOG(ERROR) << "Could not get the autofill data from WebDatabase.";
154 << " Now associating to the new autofill profile model associator"
164 LOG(ERROR) << "Server did not create the top-level autofill node. We "
180 LOG(ERROR) << "Failed to update autofill entries.";
227 << "Out of data server or autofill type not enabled";
339 LOG(ERROR) << "Failed to create autofill sync node.";
365 << " Iterating over sync nodes of autofill profile root node";
374 const sync_pb::AutofillProfileSpecifics& autofill(
458 Associate( const std::string* autofill, int64 sync_id) argument
478 GetSyncIdFromChromeId( const std::string& autofill) argument
[all...]
H A Dautofill_model_associator.cc14 #include "chrome/browser/autofill/autofill_profile.h"
83 const sync_pb::AutofillSpecifics& autofill(node.GetAutofillSpecifics());
84 DCHECK_EQ(tag, KeyToTag(UTF8ToUTF16(autofill.name()),
85 UTF8ToUTF16(autofill.value())));
88 if (MergeTimestamps(autofill, ix->timestamps(), &timestamps)) {
94 LOG(ERROR) << "Failed to write autofill sync node.";
105 LOG(ERROR) << "Failed to create autofill sync node.";
148 LOG(ERROR) << "Could not get the autofill data from WebDatabase.";
158 LOG(ERROR) << "Server did not create the top-level autofill node. We "
178 // the autofill databas
325 AddNativeEntryIfNeeded( const sync_pb::AutofillSpecifics& autofill, DataBundle* bundle, const sync_api::ReadNode& node) argument
425 GetSyncIdFromChromeId( const std::string& autofill) argument
431 Associate( const std::string* autofill, int64 sync_id) argument
474 MergeTimestamps( const sync_pb::AutofillSpecifics& autofill, const std::vector<base::Time>& timestamps, std::vector<base::Time>* new_timestamps) argument
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DEditorClientImpl.cpp73 // The size above which we stop triggering autofill for an input text field
712 // Note that we only show the autofill popup in this case if the caret is at
714 autofill(inputElement, false, false, true);
721 return autofill(inputElement, true, true, false);
725 bool EditorClientImpl::autofill(HTMLInputElement* inputElement, function in class:WebKit::EditorClientImpl
735 // Let's try to trigger autofill for that field, if applicable.
746 // Don't attempt to autofill with values that are too large.
760 // We post a task for doing the autofill as the caret position is not set
762 // and we need it to determine whether or not to trigger autofill.
788 // We won't trigger form autofill i
[all...]

Completed in 226 milliseconds