Home
last modified time | relevance | path

Searched refs:AutofillTable (Results 1 – 16 of 16) sorted by relevance

/external/chromium_org/components/autofill/core/browser/webdata/
Dautofill_webdata_backend_impl.cc87 if (!AutofillTable::FromWebDatabase(db)->AddFormFieldValues( in AddFormElements()
109 AutofillTable::FromWebDatabase(db)->GetFormValuesForElementName( in GetFormValuesForElementName()
119 bool value = AutofillTable::FromWebDatabase(db)->HasFormElements(); in HasFormElements()
131 if (AutofillTable::FromWebDatabase(db)->RemoveFormElementsAddedBetween( in RemoveFormElementsAddedBetween()
150 if (AutofillTable::FromWebDatabase(db)->RemoveFormElement(name, value)) { in RemoveFormValueForElementName()
168 if (!AutofillTable::FromWebDatabase(db)->AddAutofillProfile(profile)) { in AddAutofillProfile()
190 if (!AutofillTable::FromWebDatabase(db)->GetAutofillProfile(profile.guid(), in UpdateAutofillProfile()
196 if (!AutofillTable::FromWebDatabase(db)->UpdateAutofillProfile(profile)) { in UpdateAutofillProfile()
215 if (!AutofillTable::FromWebDatabase(db)->GetAutofillProfile(guid, &profile)) { in RemoveAutofillProfile()
221 if (!AutofillTable::FromWebDatabase(db)->RemoveAutofillProfile(guid)) { in RemoveAutofillProfile()
[all …]
Dautofill_table.cc72 if (data.size() > AutofillTable::kMaxDataLength) in GetInfo()
73 return data.substr(0, AutofillTable::kMaxDataLength); in GetInfo()
438 const size_t AutofillTable::kMaxDataLength = 1024;
440 AutofillTable::AutofillTable(const std::string& app_locale) in AutofillTable() function in autofill::AutofillTable
444 AutofillTable::~AutofillTable() { in ~AutofillTable()
447 AutofillTable* AutofillTable::FromWebDatabase(WebDatabase* db) { in FromWebDatabase()
448 return static_cast<AutofillTable*>(db->GetTable(GetKey())); in FromWebDatabase()
451 WebDatabaseTable::TypeKey AutofillTable::GetTypeKey() const { in GetTypeKey()
455 bool AutofillTable::CreateTablesIfNecessary() { in CreateTablesIfNecessary()
461 bool AutofillTable::IsSyncable() { in IsSyncable()
[all …]
Dautofill_table.h128 class AutofillTable : public WebDatabaseTable {
130 explicit AutofillTable(const std::string& app_locale);
131 virtual ~AutofillTable();
134 static AutofillTable* FromWebDatabase(WebDatabase* db);
363 DISALLOW_COPY_AND_ASSIGN(AutofillTable);
Dautofill_profile_syncable_service.h39 class AutofillTable; variable
164 AutofillTable* GetAutofillTable() const;
Dautofill_profile_syncable_service.cc31 if (sanitized_value.length() > AutofillTable::kMaxDataLength) in LimitData()
32 sanitized_value.resize(AutofillTable::kMaxDataLength); in LimitData()
293 AutofillTable* autofill_table = GetAutofillTable(); in SaveChangesToWebData()
658 AutofillTable* AutofillProfileSyncableService::GetAutofillTable() const { in GetAutofillTable()
659 return AutofillTable::FromWebDatabase(webdata_backend_->GetDatabase()); in GetAutofillTable()
Dweb_data_service_unittest.cc108 wdbs_->AddTable(scoped_ptr<WebDatabaseTable>(new AutofillTable("en-US"))); in SetUp()
Dautofill_table_unittest.cc128 table_.reset(new AutofillTable("en-US")); in SetUp()
136 scoped_ptr<AutofillTable> table_;
/external/chromium_org/chrome/browser/webdata/
Dautocomplete_syncable_service.h32 class AutofillTable; variable
148 autofill::AutofillTable* GetAutofillTable() const;
Dautocomplete_syncable_service.cc24 using autofill::AutofillTable;
433 AutofillTable* AutocompleteSyncableService::GetAutofillTable() const { in GetAutofillTable()
434 return AutofillTable::FromWebDatabase(web_data_backend_->GetDatabase()); in GetAutofillTable()
Dweb_data_service_factory.cc86 new autofill::AutofillTable(g_browser_process->GetApplicationLocale()))); in WebDataServiceWrapper()
/external/chromium_org/chrome/browser/sync/test/integration/
Dtwo_client_autofill_sync_test.cc18 using autofill::AutofillTable;
335 base::string16 max_length_string(AutofillTable::kMaxDataLength, '.'); in IN_PROC_BROWSER_TEST_F()
362 AutofillTable::kMaxDataLength + 1, '.'); in IN_PROC_BROWSER_TEST_F()
Dautofill_helper.cc31 using autofill::AutofillTable;
105 AutofillTable::FromWebDatabase( in GetAllAutofillEntriesOnDBThread()
/external/chromium_org/android_webview/browser/
Daw_form_database_service.cc34 scoped_ptr<WebDatabaseTable>(new autofill::AutofillTable( in AwFormDatabaseService()
/external/chromium_org/chrome/browser/sync/
Dprofile_sync_service_autofill_unittest.cc76 using autofill::AutofillTable;
122 class AutofillTableMock : public AutofillTable {
124 AutofillTableMock() : AutofillTable("en-US") {} in AutofillTableMock()
153 explicit WebDatabaseFake(AutofillTable* autofill_table) { in WebDatabaseFake()
/external/chromium_org/components/webdata/common/
Dweb_database_migration_unittest.cc34 using autofill::AutofillTable;
186 AutofillTable autofill_table("en-US"); in DoMigration()
/external/chromium_org/components/autofill/core/browser/
Dpersonal_data_manager_unittest.cc106 scoped_ptr<WebDatabaseTable>(new AutofillTable("en-US"))); in SetUp()