| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/autofill/browser/form_field.h" | 5 #include "components/autofill/core/browser/form_field.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/strings/string_util.h" | 13 #include "base/strings/string_util.h" |
| 14 #include "base/strings/stringprintf.h" | 14 #include "base/strings/stringprintf.h" |
| 15 #include "base/strings/utf_string_conversions.h" | 15 #include "base/strings/utf_string_conversions.h" |
| 16 #include "components/autofill/browser/address_field.h" | 16 #include "components/autofill/core/browser/address_field.h" |
| 17 #include "components/autofill/browser/autofill_field.h" | 17 #include "components/autofill/core/browser/autofill_field.h" |
| 18 #include "components/autofill/browser/autofill_regexes.h" | 18 #include "components/autofill/core/browser/autofill_regexes.h" |
| 19 #include "components/autofill/browser/autofill_scanner.h" | 19 #include "components/autofill/core/browser/autofill_scanner.h" |
| 20 #include "components/autofill/browser/credit_card_field.h" | 20 #include "components/autofill/core/browser/credit_card_field.h" |
| 21 #include "components/autofill/browser/email_field.h" | 21 #include "components/autofill/core/browser/email_field.h" |
| 22 #include "components/autofill/browser/field_types.h" | 22 #include "components/autofill/core/browser/field_types.h" |
| 23 #include "components/autofill/browser/form_structure.h" | 23 #include "components/autofill/core/browser/form_structure.h" |
| 24 #include "components/autofill/browser/name_field.h" | 24 #include "components/autofill/core/browser/name_field.h" |
| 25 #include "components/autofill/browser/phone_field.h" | 25 #include "components/autofill/core/browser/phone_field.h" |
| 26 #include "ui/base/l10n/l10n_util.h" | 26 #include "ui/base/l10n/l10n_util.h" |
| 27 | 27 |
| 28 namespace autofill { | 28 namespace autofill { |
| 29 namespace { | 29 namespace { |
| 30 | 30 |
| 31 bool IsTextField(const std::string& type) { | 31 bool IsTextField(const std::string& type) { |
| 32 return type == "text"; | 32 return type == "text"; |
| 33 } | 33 } |
| 34 | 34 |
| 35 bool IsEmailField(const std::string& type) { | 35 bool IsEmailField(const std::string& type) { |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 | 191 |
| 192 // Add entries into the map for each field type found in |form_field|. | 192 // Add entries into the map for each field type found in |form_field|. |
| 193 bool ok = form_field->ClassifyField(map); | 193 bool ok = form_field->ClassifyField(map); |
| 194 DCHECK(ok); | 194 DCHECK(ok); |
| 195 } | 195 } |
| 196 | 196 |
| 197 std::swap(*fields, remaining_fields); | 197 std::swap(*fields, remaining_fields); |
| 198 } | 198 } |
| 199 | 199 |
| 200 } // namespace autofill | 200 } // namespace autofill |
| OLD | NEW |