| Index: chrome/renderer/autofill/form_cache.cc
|
| diff --git a/chrome/renderer/autofill/form_cache.cc b/chrome/renderer/autofill/form_cache.cc
|
| index c5ff6d6dbacc4f0cbf392f797937409c40d851a3..6931354e6ef3902d64f559a2ed049a10cf924305 100644
|
| --- a/chrome/renderer/autofill/form_cache.cc
|
| +++ b/chrome/renderer/autofill/form_cache.cc
|
| @@ -7,6 +7,10 @@
|
| #include "base/logging.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/renderer/autofill/form_autofill_util.h"
|
| +#include "content/public/common/form_data.h"
|
| +#include "content/public/common/form_data_predictions.h"
|
| +#include "content/public/common/form_field.h"
|
| +#include "content/public/common/form_field_predictions.h"
|
| #include "grit/generated_resources.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement.h"
|
| @@ -17,11 +21,9 @@
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebVector.h"
|
| #include "ui/base/l10n/l10n_util.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 content::FormData;
|
| +using content::FormDataPredictions;
|
| using WebKit::WebDocument;
|
| using WebKit::WebFormControlElement;
|
| using WebKit::WebFormElement;
|
| @@ -30,8 +32,6 @@ using WebKit::WebInputElement;
|
| using WebKit::WebSelectElement;
|
| using WebKit::WebString;
|
| using WebKit::WebVector;
|
| -using webkit::forms::FormData;
|
| -using webkit::forms::FormDataPredictions;
|
|
|
| namespace {
|
|
|
|
|