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

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

Issue 6775005: iwyu: Cleanup in the following files: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Unit test fixes. Created 9 years, 8 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
« no previous file with comments | « chrome/browser/autofill/contact_info.cc ('k') | chrome/browser/autofill/credit_card.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CHROME_BROWSER_AUTOFILL_CREDIT_CARD_H_ 5 #ifndef CHROME_BROWSER_AUTOFILL_CREDIT_CARD_H_
6 #define CHROME_BROWSER_AUTOFILL_CREDIT_CARD_H_ 6 #define CHROME_BROWSER_AUTOFILL_CREDIT_CARD_H_
7 #pragma once 7 #pragma once
8 8
9 #include <ostream>
10 #include <string>
9 #include <vector> 11 #include <vector>
10 12
11 #include "base/string16.h" 13 #include "base/string16.h"
14 #include "chrome/browser/autofill/field_types.h"
12 #include "chrome/browser/autofill/form_group.h" 15 #include "chrome/browser/autofill/form_group.h"
13 16
14 // A form group that stores credit card information. 17 // A form group that stores credit card information.
15 class CreditCard : public FormGroup { 18 class CreditCard : public FormGroup {
16 public: 19 public:
17 explicit CreditCard(const std::string& guid); 20 explicit CreditCard(const std::string& guid);
18 21
19 // For use in STL containers. 22 // For use in STL containers.
20 CreditCard(); 23 CreditCard();
21 CreditCard(const CreditCard& credit_card); 24 CreditCard(const CreditCard& credit_card);
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 extern const char* const kAmericanExpressCard; 160 extern const char* const kAmericanExpressCard;
158 extern const char* const kDinersCard; 161 extern const char* const kDinersCard;
159 extern const char* const kDiscoverCard; 162 extern const char* const kDiscoverCard;
160 extern const char* const kGenericCard; 163 extern const char* const kGenericCard;
161 extern const char* const kJCBCard; 164 extern const char* const kJCBCard;
162 extern const char* const kMasterCard; 165 extern const char* const kMasterCard;
163 extern const char* const kSoloCard; 166 extern const char* const kSoloCard;
164 extern const char* const kVisaCard; 167 extern const char* const kVisaCard;
165 168
166 #endif // CHROME_BROWSER_AUTOFILL_CREDIT_CARD_H_ 169 #endif // CHROME_BROWSER_AUTOFILL_CREDIT_CARD_H_
OLDNEW
« no previous file with comments | « chrome/browser/autofill/contact_info.cc ('k') | chrome/browser/autofill/credit_card.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698