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

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

Issue 16469004: Use a direct include of strings headers in components/, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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_BROWSER_CREDIT_CARD_H_
6 #define COMPONENTS_AUTOFILL_BROWSER_CREDIT_CARD_H_ 6 #define COMPONENTS_AUTOFILL_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/string16.h" 13 #include "base/strings/string16.h"
14 #include "components/autofill/browser/autofill_data_model.h" 14 #include "components/autofill/browser/autofill_data_model.h"
15 #include "components/autofill/browser/field_types.h" 15 #include "components/autofill/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:
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 extern const char* const kDiscoverCard; 153 extern const char* const kDiscoverCard;
154 extern const char* const kGenericCard; 154 extern const char* const kGenericCard;
155 extern const char* const kJCBCard; 155 extern const char* const kJCBCard;
156 extern const char* const kMasterCard; 156 extern const char* const kMasterCard;
157 extern const char* const kSoloCard; 157 extern const char* const kSoloCard;
158 extern const char* const kVisaCard; 158 extern const char* const kVisaCard;
159 159
160 } // namespace autofill 160 } // namespace autofill
161 161
162 #endif // COMPONENTS_AUTOFILL_BROWSER_CREDIT_CARD_H_ 162 #endif // COMPONENTS_AUTOFILL_BROWSER_CREDIT_CARD_H_
OLDNEW
« no previous file with comments | « components/autofill/browser/contact_info_unittest.cc ('k') | components/autofill/browser/credit_card.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698