| 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 <limits> | 7 #include <limits> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/strings/string_number_conversions.h" | 10 #include "base/strings/string_number_conversions.h" |
| 11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 12 #include "base/values.h" | 12 #include "base/values.h" |
| 13 #include "components/autofill/content/browser/wallet/gaia_account.h" | 13 #include "components/autofill/content/browser/wallet/gaia_account.h" |
| 14 #include "components/autofill/core/browser/autofill_type.h" | 14 #include "components/autofill/core/browser/autofill_type.h" |
| 15 #include "components/autofill/core/browser/credit_card.h" | 15 #include "components/autofill/core/browser/credit_card.h" |
| 16 #include "grit/component_resources.h" |
| 16 #include "grit/component_strings.h" | 17 #include "grit/component_strings.h" |
| 17 #include "grit/webkit_resources.h" | |
| 18 #include "ui/base/l10n/l10n_util.h" | 18 #include "ui/base/l10n/l10n_util.h" |
| 19 #include "ui/base/resource/resource_bundle.h" | 19 #include "ui/base/resource/resource_bundle.h" |
| 20 #include "ui/gfx/image/image.h" | 20 #include "ui/gfx/image/image.h" |
| 21 #include "url/gurl.h" | 21 #include "url/gurl.h" |
| 22 | 22 |
| 23 namespace autofill { | 23 namespace autofill { |
| 24 namespace wallet { | 24 namespace wallet { |
| 25 | 25 |
| 26 namespace { | 26 namespace { |
| 27 | 27 |
| (...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 VectorsAreEqual<LegalDocument>(legal_documents(), | 587 VectorsAreEqual<LegalDocument>(legal_documents(), |
| 588 other.legal_documents()); | 588 other.legal_documents()); |
| 589 } | 589 } |
| 590 | 590 |
| 591 bool WalletItems::operator!=(const WalletItems& other) const { | 591 bool WalletItems::operator!=(const WalletItems& other) const { |
| 592 return !(*this == other); | 592 return !(*this == other); |
| 593 } | 593 } |
| 594 | 594 |
| 595 } // namespace wallet | 595 } // namespace wallet |
| 596 } // namespace autofill | 596 } // namespace autofill |
| OLD | NEW |