| Index: chrome/browser/autofill/form_structure.cc
|
| diff --git a/chrome/browser/autofill/form_structure.cc b/chrome/browser/autofill/form_structure.cc
|
| index 33a2768f95ec899596d9584b476b121f29f57faf..4229af3e6f4c682858fcb51ed77478587ed74909 100644
|
| --- a/chrome/browser/autofill/form_structure.cc
|
| +++ b/chrome/browser/autofill/form_structure.cc
|
| @@ -9,9 +9,9 @@
|
| #include "base/basictypes.h"
|
| #include "base/logging.h"
|
| #include "base/sha1.h"
|
| -#include "base/stringprintf.h"
|
| #include "base/string_number_conversions.h"
|
| #include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
| #include "base/time.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/browser/autofill/autofill_metrics.h"
|
| @@ -20,14 +20,14 @@
|
| #include "chrome/browser/autofill/field_types.h"
|
| #include "chrome/browser/autofill/form_field.h"
|
| #include "third_party/libjingle/source/talk/xmllite/xmlelement.h"
|
| -#include "webkit/glue/form_data.h"
|
| -#include "webkit/glue/form_data_predictions.h"
|
| -#include "webkit/glue/form_field.h"
|
| -#include "webkit/glue/form_field_predictions.h"
|
| +#include "webkit/forms/form_data.h"
|
| +#include "webkit/forms/form_data_predictions.h"
|
| +#include "webkit/forms/form_field.h"
|
| +#include "webkit/forms/form_field_predictions.h"
|
|
|
| -using webkit_glue::FormData;
|
| -using webkit_glue::FormDataPredictions;
|
| -using webkit_glue::FormFieldPredictions;
|
| +using webkit::forms::FormData;
|
| +using webkit::forms::FormDataPredictions;
|
| +using webkit::forms::FormFieldPredictions;
|
|
|
| namespace {
|
|
|
| @@ -243,7 +243,7 @@ FormStructure::FormStructure(const FormData& form)
|
| has_author_specified_types_(false) {
|
| // Copy the form fields.
|
| std::map<string16, size_t> unique_names;
|
| - for (std::vector<webkit_glue::FormField>::const_iterator field =
|
| + for (std::vector<webkit::forms::FormField>::const_iterator field =
|
| form.fields.begin();
|
| field != form.fields.end(); field++) {
|
| // Add all supported form fields (including with empty names) to the
|
| @@ -486,7 +486,7 @@ void FormStructure::GetFieldTypePredictions(
|
| for (std::vector<AutofillField*>::const_iterator field =
|
| form_structure->fields_.begin();
|
| field != form_structure->fields_.end(); ++field) {
|
| - form.data.fields.push_back(webkit_glue::FormField(**field));
|
| + form.data.fields.push_back(webkit::forms::FormField(**field));
|
|
|
| FormFieldPredictions annotated_field;
|
| annotated_field.signature = (*field)->FieldSignature();
|
|
|