| Index: chrome/renderer/autofill/form_autocomplete_browsertest.cc
|
| diff --git a/chrome/renderer/autofill/form_autocomplete_browsertest.cc b/chrome/renderer/autofill/form_autocomplete_browsertest.cc
|
| index 5285231cdebceb85bdf66f610211e497620db39c..53a70d76c0ccd69be86e297f8c38dd266b428618 100644
|
| --- a/chrome/renderer/autofill/form_autocomplete_browsertest.cc
|
| +++ b/chrome/renderer/autofill/form_autocomplete_browsertest.cc
|
| @@ -5,15 +5,15 @@
|
| #include "base/time.h"
|
| #include "chrome/common/autofill_messages.h"
|
| #include "chrome/test/base/chrome_render_view_test.h"
|
| +#include "content/public/common/form_data.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLError.h"
|
| -#include "webkit/forms/form_data.h"
|
| #include "webkit/glue/web_io_operators.h"
|
|
|
| -using webkit::forms::FormData;
|
| +using content::FormData;
|
| using WebKit::WebFrame;
|
| using WebKit::WebString;
|
| using WebKit::WebURLError;
|
| @@ -40,7 +40,7 @@ TEST_F(FormAutocompleteTest, NormalFormSubmit) {
|
| AutofillHostMsg_FormSubmitted::Read(message, &forms);
|
| ASSERT_EQ(2U, forms.a.fields.size());
|
|
|
| - webkit::forms::FormField& form_field = forms.a.fields[0];
|
| + content::FormField& form_field = forms.a.fields[0];
|
| EXPECT_EQ(WebString("fname"), form_field.name);
|
| EXPECT_EQ(WebString("Rick"), form_field.value);
|
|
|
| @@ -89,7 +89,7 @@ TEST_F(FormAutocompleteTest, AutoCompleteOffInputSubmit) {
|
| AutofillHostMsg_FormSubmitted::Read(message, &forms);
|
| ASSERT_EQ(1U, forms.a.fields.size());
|
|
|
| - webkit::forms::FormField& form_field = forms.a.fields[0];
|
| + content::FormField& form_field = forms.a.fields[0];
|
| EXPECT_EQ(WebString("fname"), form_field.name);
|
| EXPECT_EQ(WebString("Rick"), form_field.value);
|
| }
|
|
|