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

Side by Side Diff: components/autofill/core/browser/credit_card.h

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflicts 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 (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 #ifndef COMPONENTS_AUTOFILL_BROWSER_CREDIT_CARD_H_ 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_CREDIT_CARD_H_
6 #define COMPONENTS_AUTOFILL_BROWSER_CREDIT_CARD_H_ 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_CREDIT_CARD_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/strings/string16.h" 13 #include "base/strings/string16.h"
14 #include "components/autofill/browser/autofill_data_model.h" 14 #include "components/autofill/core/browser/autofill_data_model.h"
15 #include "components/autofill/browser/field_types.h" 15 #include "components/autofill/core/browser/field_types.h"
16 16
17 namespace autofill { 17 namespace autofill {
18 18
19 struct FormFieldData; 19 struct FormFieldData;
20 20
21 // A form group that stores credit card information. 21 // A form group that stores credit card information.
22 class CreditCard : public AutofillDataModel { 22 class CreditCard : public AutofillDataModel {
23 public: 23 public:
24 CreditCard(const std::string& guid, const std::string& origin); 24 CreditCard(const std::string& guid, const std::string& origin);
25 25
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 extern const char* const kDinersCard; 153 extern const char* const kDinersCard;
154 extern const char* const kDiscoverCard; 154 extern const char* const kDiscoverCard;
155 extern const char* const kGenericCard; 155 extern const char* const kGenericCard;
156 extern const char* const kJCBCard; 156 extern const char* const kJCBCard;
157 extern const char* const kMasterCard; 157 extern const char* const kMasterCard;
158 extern const char* const kSoloCard; 158 extern const char* const kSoloCard;
159 extern const char* const kVisaCard; 159 extern const char* const kVisaCard;
160 160
161 } // namespace autofill 161 } // namespace autofill
162 162
163 #endif // COMPONENTS_AUTOFILL_BROWSER_CREDIT_CARD_H_ 163 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_CREDIT_CARD_H_
OLDNEW
« no previous file with comments | « components/autofill/core/browser/contact_info_unittest.cc ('k') | components/autofill/core/browser/credit_card.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698