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..577c5c9c2c3bca51f67d219a1b0df8694f4707f5 100644 |
--- a/chrome/browser/sync/test/integration/autofill_helper.cc |
+++ b/chrome/browser/sync/test/integration/autofill_helper.cc |
@@ -22,7 +22,7 @@ |
#include "chrome/browser/webdata/web_database.h" |
#include "chrome/common/chrome_notification_types.h" |
#include "chrome/test/base/thread_observer_helper.h" |
-#include "webkit/forms/form_field.h" |
+#include "content/public/common/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<content::FormField> form_fields; |
for (std::set<AutofillKey>::const_iterator i = keys.begin(); |
i != keys.end(); |
++i) { |
- webkit::forms::FormField field; |
+ content::FormField field; |
field.name = i->name(); |
field.value = i->value(); |
form_fields.push_back(field); |