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

Unified Diff: chrome/renderer/autofill/autofill_agent.cc

Issue 6633001: Convert autofill messages to use the new IPC macros (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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/common/common_message_generator.h ('k') | chrome/renderer/autofill/form_autocomplete_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/autofill/autofill_agent.cc
===================================================================
--- chrome/renderer/autofill/autofill_agent.cc (revision 77285)
+++ chrome/renderer/autofill/autofill_agent.cc (working copy)
@@ -351,7 +351,7 @@
return;
autofill_action_ = action;
- was_query_node_autofilled_ = field.is_autofilled();
+ was_query_node_autofilled_ = field.is_autofilled;
Send(new AutoFillHostMsg_FillAutoFillFormData(
routing_id(), autofill_query_id_, form, field, unique_id));
}
@@ -381,7 +381,7 @@
// label, so find the label here.
// TODO(jhawkins): Add form and field identities so we can use the cached form
// data in FormManager.
- field->set_label(FormManager::LabelForElement(element));
+ field->label = FormManager::LabelForElement(element);
return true;
}
« no previous file with comments | « chrome/common/common_message_generator.h ('k') | chrome/renderer/autofill/form_autocomplete_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698