| 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/content/browser/wallet/wallet_items.h" | 5 #include "components/autofill/content/browser/wallet/wallet_items.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
| 9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
| 10 #include "base/values.h" | 10 #include "base/values.h" |
| 11 #include "components/autofill/browser/autofill_type.h" | 11 #include "components/autofill/core/browser/autofill_type.h" |
| 12 #include "components/autofill/browser/credit_card.h" | 12 #include "components/autofill/core/browser/credit_card.h" |
| 13 #include "googleurl/src/gurl.h" | 13 #include "googleurl/src/gurl.h" |
| 14 #include "grit/component_strings.h" | 14 #include "grit/component_strings.h" |
| 15 #include "grit/webkit_resources.h" | 15 #include "grit/webkit_resources.h" |
| 16 #include "ui/base/l10n/l10n_util.h" | 16 #include "ui/base/l10n/l10n_util.h" |
| 17 #include "ui/base/resource/resource_bundle.h" | 17 #include "ui/base/resource/resource_bundle.h" |
| 18 #include "ui/gfx/image/image.h" | 18 #include "ui/gfx/image/image.h" |
| 19 | 19 |
| 20 namespace autofill { | 20 namespace autofill { |
| 21 namespace wallet { | 21 namespace wallet { |
| 22 | 22 |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 521 VectorsAreEqual<LegalDocument>(legal_documents(), | 521 VectorsAreEqual<LegalDocument>(legal_documents(), |
| 522 other.legal_documents()); | 522 other.legal_documents()); |
| 523 } | 523 } |
| 524 | 524 |
| 525 bool WalletItems::operator!=(const WalletItems& other) const { | 525 bool WalletItems::operator!=(const WalletItems& other) const { |
| 526 return !(*this == other); | 526 return !(*this == other); |
| 527 } | 527 } |
| 528 | 528 |
| 529 } // namespace wallet | 529 } // namespace wallet |
| 530 } // namespace autofill | 530 } // namespace autofill |
| OLD | NEW |