Index: chrome/browser/sync/test/integration/autofill_helper.cc |
diff --git a/chrome/browser/sync/test/integration/autofill_helper.cc b/chrome/browser/sync/test/integration/autofill_helper.cc |
index 42c32a156eded9cae824131ed50adf6e75b8be89..82dde6746182b25b0c6735e6dd18f1f5b21f648d 100644 |
--- a/chrome/browser/sync/test/integration/autofill_helper.cc |
+++ b/chrome/browser/sync/test/integration/autofill_helper.cc |
@@ -21,8 +21,8 @@ |
#include "chrome/browser/webdata/web_data_service_factory.h" |
#include "chrome/browser/webdata/web_database.h" |
#include "chrome/common/chrome_notification_types.h" |
+#include "chrome/common/form_field_data.h" |
#include "chrome/test/base/thread_observer_helper.h" |
-#include "webkit/forms/form_field.h" |
using base::WaitableEvent; |
using content::BrowserThread; |
@@ -159,11 +159,11 @@ PersonalDataManager* GetPersonalDataManager(int index) { |
} |
void AddKeys(int profile, const std::set<AutofillKey>& keys) { |
- std::vector<webkit::forms::FormField> form_fields; |
+ std::vector<FormFieldData> form_fields; |
for (std::set<AutofillKey>::const_iterator i = keys.begin(); |
i != keys.end(); |
++i) { |
- webkit::forms::FormField field; |
+ FormFieldData field; |
field.name = i->name(); |
field.value = i->value(); |
form_fields.push_back(field); |