Chromium Code Reviews| Index: chrome/browser/autofill/form_field.cc |
| diff --git a/chrome/browser/autofill/form_field.cc b/chrome/browser/autofill/form_field.cc |
| index 1126fad4f0b884d4102f50fd6bee98416106ad73..b32eb6eaaf273df9621b39e5170e6fc09ec8bb70 100644 |
| --- a/chrome/browser/autofill/form_field.cc |
| +++ b/chrome/browser/autofill/form_field.cc |
| @@ -4,16 +4,26 @@ |
| #include "chrome/browser/autofill/form_field.h" |
| +#include <stddef.h> |
| +#include <string> |
| +#include <utility> |
| + |
| +#include "base/logging.h" |
| #include "base/string_util.h" |
| +#include "base/string_util_posix.h" |
| +#include "base/stringprintf.h" |
| #include "base/utf_string_conversions.h" |
| #include "chrome/browser/autofill/address_field.h" |
| #include "chrome/browser/autofill/autofill_field.h" |
| #include "chrome/browser/autofill/credit_card_field.h" |
| +#include "chrome/browser/autofill/field_types.h" |
| +#include "chrome/browser/autofill/form_structure.h" |
| #include "chrome/browser/autofill/name_field.h" |
| #include "chrome/browser/autofill/phone_field.h" |
| #include "grit/autofill_resources.h" |
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebRegularExpression.h" |
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" |
| +#include "third_party/WebKit/Source/WebKit/chromium/public/WebTextCaseSensitivity.h" |
|
dhollowa
2011/03/29 21:36:42
Also strange.
James Hawkins
2011/03/29 22:42:06
Same as previous comment.
|
| #include "ui/base/l10n/l10n_util.h" |
| // Field names from the ECML specification; see RFC 3106. We've |