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/wallet/wallet_address.h" | 5 #include "components/autofill/browser/wallet/wallet_address.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/string_util.h" |
8 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
9 #include "base/values.h" | 10 #include "base/values.h" |
10 #include "components/autofill/browser/autofill_country.h" | 11 #include "components/autofill/browser/autofill_country.h" |
11 #include "components/autofill/browser/autofill_profile.h" | 12 #include "components/autofill/browser/autofill_profile.h" |
12 | 13 |
13 namespace autofill { | 14 namespace autofill { |
14 namespace wallet { | 15 namespace wallet { |
15 | 16 |
16 namespace { | 17 namespace { |
17 | 18 |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 phone_number_ == other.phone_number_ && | 281 phone_number_ == other.phone_number_ && |
281 object_id_ == other.object_id_; | 282 object_id_ == other.object_id_; |
282 } | 283 } |
283 | 284 |
284 bool Address::operator!=(const Address& other) const { | 285 bool Address::operator!=(const Address& other) const { |
285 return !(*this == other); | 286 return !(*this == other); |
286 } | 287 } |
287 | 288 |
288 } // namespace wallet | 289 } // namespace wallet |
289 } // namespace autofill | 290 } // namespace autofill |
OLD | NEW |