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 "chrome/browser/autofill/wallet/wallet_items.h" | 5 #include "components/autofill/browser/wallet/wallet_items.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/values.h" | 8 #include "base/values.h" |
9 #include "googleurl/src/gurl.h" | 9 #include "googleurl/src/gurl.h" |
10 #include "grit/webkit_resources.h" | 10 #include "grit/webkit_resources.h" |
11 #include "ui/base/resource/resource_bundle.h" | 11 #include "ui/base/resource/resource_bundle.h" |
12 #include "ui/gfx/image/image.h" | 12 #include "ui/gfx/image/image.h" |
13 | 13 |
14 namespace autofill { | 14 namespace autofill { |
15 namespace wallet { | 15 namespace wallet { |
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 required_actions_ == other.required_actions_ && | 402 required_actions_ == other.required_actions_ && |
403 obfuscated_gaia_id_ == other.obfuscated_gaia_id_; | 403 obfuscated_gaia_id_ == other.obfuscated_gaia_id_; |
404 } | 404 } |
405 | 405 |
406 bool WalletItems::operator!=(const WalletItems& other) const { | 406 bool WalletItems::operator!=(const WalletItems& other) const { |
407 return !(*this == other); | 407 return !(*this == other); |
408 } | 408 } |
409 | 409 |
410 } // namespace wallet | 410 } // namespace wallet |
411 } // namespace autofill | 411 } // namespace autofill |
OLD | NEW |