Searched defs:AutofillTable (Results 1 - 3 of 3) sorted by relevance

/external/chromium/chrome/browser/webdata/
H A Dautofill_table.h111 class AutofillTable : public WebDatabaseTable { class in inherits:WebDatabaseTable
113 AutofillTable(sql::Connection* db, sql::MetaTable* meta_table) function in class:AutofillTable
115 virtual ~AutofillTable() {}
327 DISALLOW_COPY_AND_ASSIGN(AutofillTable);
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_table.h124 class AutofillTable : public WebDatabaseTable { class in namespace:autofill
126 explicit AutofillTable(const std::string& app_locale);
127 virtual ~AutofillTable();
129 // Retrieves the AutofillTable* owned by |database|.
130 static AutofillTable* FromWebDatabase(WebDatabase* db);
383 DISALLOW_COPY_AND_ASSIGN(AutofillTable);
H A Dautofill_table.cc51 if (data.size() > AutofillTable::kMaxDataLength)
52 return data.substr(0, AutofillTable::kMaxDataLength);
350 const size_t AutofillTable::kMaxDataLength = 1024;
352 AutofillTable::AutofillTable(const std::string& app_locale) function in class:autofill::AutofillTable
356 AutofillTable::~AutofillTable() {
359 AutofillTable* AutofillTable::FromWebDatabase(WebDatabase* db) {
360 return static_cast<AutofillTable*>(d
[all...]

Completed in 87 milliseconds