| Index: chrome/browser/autofill/form_structure_unittest.cc
|
| diff --git a/chrome/browser/autofill/form_structure_unittest.cc b/chrome/browser/autofill/form_structure_unittest.cc
|
| index 811c69eb0709289d063d7b9dae3e5c53b61e5091..3e4fdc835101a4d7adcb69636b60edb67929588a 100644
|
| --- a/chrome/browser/autofill/form_structure_unittest.cc
|
| +++ b/chrome/browser/autofill/form_structure_unittest.cc
|
| @@ -6,18 +6,17 @@
|
| #include "base/string_util.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/browser/autofill/form_structure.h"
|
| +#include "chrome/common/form_data.h"
|
| +#include "chrome/common/form_field.h"
|
| #include "googleurl/src/gurl.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h"
|
| -#include "webkit/forms/form_data.h"
|
| -#include "webkit/forms/form_field.h"
|
|
|
| -using webkit::forms::FormData;
|
| -using webkit::forms::FormField;
|
| +using chrome::FormData;
|
| +using chrome::FormField;
|
| using WebKit::WebInputElement;
|
|
|
| -namespace webkit {
|
| -namespace forms {
|
| +namespace content {
|
|
|
| std::ostream& operator<<(std::ostream& os, const FormData& form) {
|
| os << UTF16ToUTF8(form.name)
|
| @@ -29,7 +28,7 @@ std::ostream& operator<<(std::ostream& os, const FormData& form) {
|
| << form.action.spec()
|
| << " ";
|
|
|
| - for (std::vector<webkit::forms::FormField>::const_iterator iter =
|
| + for (std::vector<FormField>::const_iterator iter =
|
| form.fields.begin();
|
| iter != form.fields.end(); ++iter) {
|
| os << *iter
|
| @@ -39,8 +38,7 @@ std::ostream& operator<<(std::ostream& os, const FormData& form) {
|
| return os;
|
| }
|
|
|
| -} // namespace forms
|
| -} // namespace webkit_glue
|
| +} // namespace content
|
|
|
| class FormStructureTest {
|
| public:
|
|
|