Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1482)

Unified Diff: chrome/browser/autofill/autofill_manager.cc

Issue 651002: AutoFill forms. We do this by responding to a message from WebKit which send... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/autofill/autofill_manager.h ('k') | chrome/browser/autofill/form_structure.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/autofill_manager.cc
===================================================================
--- chrome/browser/autofill/autofill_manager.cc (revision 39310)
+++ chrome/browser/autofill/autofill_manager.cc (working copy)
@@ -16,6 +16,7 @@
#include "chrome/common/chrome_switches.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/pref_service.h"
+#include "webkit/glue/form_data.h"
#include "webkit/glue/form_field.h"
#include "webkit/glue/form_field_values.h"
@@ -147,6 +148,65 @@
return true;
}
+bool AutoFillManager::FillAutoFillFormData(int query_id,
+ const FormData& form,
+ const string16& name,
+ const string16& label) {
+ // TODO(jhawkins): Use the autofill preference.
+ if (!CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kEnableNewAutoFill))
+ return false;
+
+ RenderViewHost* host = tab_contents_->render_view_host();
+ if (!host)
+ return false;
+
+ const std::vector<AutoFillProfile*>& profiles = personal_data_->profiles();
+ if (profiles.empty())
+ return false;
+
+ const AutoFillProfile* profile = NULL;
+ for (std::vector<AutoFillProfile*>::const_iterator iter = profiles.begin();
+ iter != profiles.end(); ++iter) {
+ if ((*iter)->Label() != label)
+ continue;
+
+ if ((*iter)->GetFieldText(AutoFillType(NAME_FIRST)) != name &&
+ (*iter)->GetFieldText(AutoFillType(NAME_FULL)) != name)
+ continue;
+
+ profile = *iter;
+ break;
+ }
+
+ if (!profile)
+ return false;
+
+ FormData result = form;
+ for (std::vector<FormStructure*>::const_iterator iter =
+ form_structures_.begin();
+ iter != form_structures_.end(); ++iter) {
+ const FormStructure* form_structure = *iter;
+ if (*form_structure != form)
+ continue;
+
+ for (size_t i = 0; i < form_structure->field_count(); ++i) {
+ const AutoFillField* field = form_structure->field(i);
+
+ for (size_t j = 0; j < result.values.size(); ++j) {
+ if (field->name() == result.elements[j]) {
+ result.values[j] =
+ profile->GetFieldText(AutoFillType(field->heuristic_type()));
+ break;
+ }
+ }
+ }
+ }
+
+ host->AutoFillFormDataFilled(query_id, result);
+ return true;
+}
+
void AutoFillManager::OnAutoFillDialogApply(
std::vector<AutoFillProfile>* profiles,
std::vector<CreditCard>* credit_cards) {
« no previous file with comments | « chrome/browser/autofill/autofill_manager.h ('k') | chrome/browser/autofill/form_structure.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698