| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/core/browser/autofill_manager.h" | 5 #include "components/autofill/core/browser/autofill_manager.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <limits> | 9 #include <limits> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "components/autofill/core/browser/autofill_manager_delegate.h" | 28 #include "components/autofill/core/browser/autofill_manager_delegate.h" |
| 29 #include "components/autofill/core/browser/autofill_manager_test_delegate.h" | 29 #include "components/autofill/core/browser/autofill_manager_test_delegate.h" |
| 30 #include "components/autofill/core/browser/autofill_metrics.h" | 30 #include "components/autofill/core/browser/autofill_metrics.h" |
| 31 #include "components/autofill/core/browser/autofill_profile.h" | 31 #include "components/autofill/core/browser/autofill_profile.h" |
| 32 #include "components/autofill/core/browser/autofill_type.h" | 32 #include "components/autofill/core/browser/autofill_type.h" |
| 33 #include "components/autofill/core/browser/credit_card.h" | 33 #include "components/autofill/core/browser/credit_card.h" |
| 34 #include "components/autofill/core/browser/form_structure.h" | 34 #include "components/autofill/core/browser/form_structure.h" |
| 35 #include "components/autofill/core/browser/personal_data_manager.h" | 35 #include "components/autofill/core/browser/personal_data_manager.h" |
| 36 #include "components/autofill/core/browser/phone_number.h" | 36 #include "components/autofill/core/browser/phone_number.h" |
| 37 #include "components/autofill/core/browser/phone_number_i18n.h" | 37 #include "components/autofill/core/browser/phone_number_i18n.h" |
| 38 #include "components/autofill/core/common/autofill_messages.h" | |
| 39 #include "components/autofill/core/common/autofill_pref_names.h" | 38 #include "components/autofill/core/common/autofill_pref_names.h" |
| 40 #include "components/autofill/core/common/autofill_switches.h" | 39 #include "components/autofill/core/common/autofill_switches.h" |
| 41 #include "components/autofill/core/common/form_data.h" | 40 #include "components/autofill/core/common/form_data.h" |
| 42 #include "components/autofill/core/common/form_data_predictions.h" | 41 #include "components/autofill/core/common/form_data_predictions.h" |
| 43 #include "components/autofill/core/common/form_field_data.h" | 42 #include "components/autofill/core/common/form_field_data.h" |
| 44 #include "components/autofill/core/common/password_form_fill_data.h" | 43 #include "components/autofill/core/common/password_form_fill_data.h" |
| 45 #include "components/user_prefs/pref_registry_syncable.h" | 44 #include "components/user_prefs/pref_registry_syncable.h" |
| 46 #include "grit/component_strings.h" | 45 #include "grit/component_strings.h" |
| 47 #include "third_party/WebKit/public/web/WebAutofillClient.h" | 46 #include "third_party/WebKit/public/web/WebAutofillClient.h" |
| 48 #include "ui/base/l10n/l10n_util.h" | 47 #include "ui/base/l10n/l10n_util.h" |
| (...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1101 return false; | 1100 return false; |
| 1102 | 1101 |
| 1103 // Disregard forms that we wouldn't ever autofill in the first place. | 1102 // Disregard forms that we wouldn't ever autofill in the first place. |
| 1104 if (!form.ShouldBeParsed(true)) | 1103 if (!form.ShouldBeParsed(true)) |
| 1105 return false; | 1104 return false; |
| 1106 | 1105 |
| 1107 return true; | 1106 return true; |
| 1108 } | 1107 } |
| 1109 | 1108 |
| 1110 } // namespace autofill | 1109 } // namespace autofill |
| OLD | NEW |