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

Unified Diff: chrome/browser/sync/test/integration/autofill_helper.cc

Issue 11000016: Move forms/ out of webkit/. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Response to review Created 8 years, 2 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
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);

Powered by Google App Engine
This is Rietveld 408576698