| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/personal_data_manager.h" | 5 #include "components/autofill/browser/personal_data_manager.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <functional> | 8 #include <functional> |
| 9 #include <iterator> | 9 #include <iterator> |
| 10 | 10 |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/prefs/pref_service.h" | 13 #include "base/prefs/pref_service.h" |
| 14 #include "base/strings/string_number_conversions.h" | 14 #include "base/strings/string_number_conversions.h" |
| 15 #include "base/utf_string_conversions.h" | 15 #include "base/utf_string_conversions.h" |
| 16 #include "chrome/browser/webdata/autofill_web_data_service.h" | |
| 17 #include "chrome/common/chrome_notification_types.h" | 16 #include "chrome/common/chrome_notification_types.h" |
| 18 #include "components/autofill/browser/autofill-inl.h" | 17 #include "components/autofill/browser/autofill-inl.h" |
| 19 #include "components/autofill/browser/autofill_country.h" | 18 #include "components/autofill/browser/autofill_country.h" |
| 20 #include "components/autofill/browser/autofill_field.h" | 19 #include "components/autofill/browser/autofill_field.h" |
| 21 #include "components/autofill/browser/autofill_metrics.h" | 20 #include "components/autofill/browser/autofill_metrics.h" |
| 22 #include "components/autofill/browser/form_group.h" | 21 #include "components/autofill/browser/form_group.h" |
| 23 #include "components/autofill/browser/form_structure.h" | 22 #include "components/autofill/browser/form_structure.h" |
| 24 #include "components/autofill/browser/personal_data_manager_observer.h" | 23 #include "components/autofill/browser/personal_data_manager_observer.h" |
| 25 #include "components/autofill/browser/phone_number.h" | 24 #include "components/autofill/browser/phone_number.h" |
| 26 #include "components/autofill/browser/phone_number_i18n.h" | 25 #include "components/autofill/browser/phone_number_i18n.h" |
| 27 #include "components/autofill/browser/validation.h" | 26 #include "components/autofill/browser/validation.h" |
| 28 #include "components/autofill/common/autofill_pref_names.h" | 27 #include "components/autofill/common/autofill_pref_names.h" |
| 29 #include "components/user_prefs/user_prefs.h" | 28 #include "components/user_prefs/user_prefs.h" |
| 29 #include "components/webdata/autofill/autofill_webdata_service.h" |
| 30 #include "content/public/browser/browser_context.h" | 30 #include "content/public/browser/browser_context.h" |
| 31 #include "content/public/browser/notification_source.h" | 31 #include "content/public/browser/notification_source.h" |
| 32 | 32 |
| 33 using content::BrowserContext; | 33 using content::BrowserContext; |
| 34 | 34 |
| 35 namespace { | 35 namespace { |
| 36 | 36 |
| 37 const string16::value_type kCreditCardPrefix[] = {'*', 0}; | 37 const string16::value_type kCreditCardPrefix[] = {'*', 0}; |
| 38 | 38 |
| 39 template<typename T> | 39 template<typename T> |
| (...skipping 917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 957 | 957 |
| 958 void PersonalDataManager::set_metric_logger( | 958 void PersonalDataManager::set_metric_logger( |
| 959 const AutofillMetrics* metric_logger) { | 959 const AutofillMetrics* metric_logger) { |
| 960 metric_logger_.reset(metric_logger); | 960 metric_logger_.reset(metric_logger); |
| 961 } | 961 } |
| 962 | 962 |
| 963 void PersonalDataManager::set_browser_context( | 963 void PersonalDataManager::set_browser_context( |
| 964 content::BrowserContext* context) { | 964 content::BrowserContext* context) { |
| 965 browser_context_ = context; | 965 browser_context_ = context; |
| 966 } | 966 } |
| OLD | NEW |