Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Side by Side Diff: components/autofill/content/browser/wallet/wallet_items.cc

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix android build Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_resources.h" 14 #include "grit/component_resources.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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698