| 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/browser/autofill_data_model.h" | 5 #include "components/autofill/browser/autofill_data_model.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/string_util.h" | |
| 10 #include "base/strings/string_number_conversions.h" | 9 #include "base/strings/string_number_conversions.h" |
| 10 #include "base/strings/string_util.h" |
| 11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 12 #include "components/autofill/browser/autofill_country.h" | 12 #include "components/autofill/browser/autofill_country.h" |
| 13 #include "components/autofill/browser/autofill_field.h" | 13 #include "components/autofill/browser/autofill_field.h" |
| 14 #include "components/autofill/browser/state_names.h" | 14 #include "components/autofill/browser/state_names.h" |
| 15 #include "components/autofill/browser/validation.h" | 15 #include "components/autofill/browser/validation.h" |
| 16 #include "components/autofill/common/form_field_data.h" | 16 #include "components/autofill/common/form_field_data.h" |
| 17 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
| 18 #include "grit/component_resources.h" | 18 #include "grit/component_resources.h" |
| 19 #include "ui/base/l10n/l10n_util.h" | 19 #include "ui/base/l10n/l10n_util.h" |
| 20 | 20 |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 const std::string& app_locale, | 181 const std::string& app_locale, |
| 182 FormFieldData* field_data) const { | 182 FormFieldData* field_data) const { |
| 183 return false; | 183 return false; |
| 184 } | 184 } |
| 185 | 185 |
| 186 bool AutofillDataModel::IsVerified() const { | 186 bool AutofillDataModel::IsVerified() const { |
| 187 return !origin_.empty() && !GURL(origin_).is_valid(); | 187 return !origin_.empty() && !GURL(origin_).is_valid(); |
| 188 } | 188 } |
| 189 | 189 |
| 190 } // namespace autofill | 190 } // namespace autofill |
| OLD | NEW |