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

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

Issue 2906763005: Add support for Brazil Elo card in autofill. (Closed)
Patch Set: Fix test Created 3 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
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 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_CREDIT_CARD_H_ 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_CREDIT_CARD_H_
6 #define COMPONENTS_AUTOFILL_CORE_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 <utility> 10 #include <utility>
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 std::string billing_address_id_; 265 std::string billing_address_id_;
266 }; 266 };
267 267
268 // So we can compare CreditCards with EXPECT_EQ(). 268 // So we can compare CreditCards with EXPECT_EQ().
269 std::ostream& operator<<(std::ostream& os, const CreditCard& credit_card); 269 std::ostream& operator<<(std::ostream& os, const CreditCard& credit_card);
270 270
271 // The string identifiers for credit card icon resources. 271 // The string identifiers for credit card icon resources.
272 extern const char kAmericanExpressCard[]; 272 extern const char kAmericanExpressCard[];
273 extern const char kDinersCard[]; 273 extern const char kDinersCard[];
274 extern const char kDiscoverCard[]; 274 extern const char kDiscoverCard[];
275 extern const char kEloCard[];
275 extern const char kGenericCard[]; 276 extern const char kGenericCard[];
276 extern const char kJCBCard[]; 277 extern const char kJCBCard[];
277 extern const char kMasterCard[]; 278 extern const char kMasterCard[];
278 extern const char kMirCard[]; 279 extern const char kMirCard[];
279 extern const char kUnionPay[]; 280 extern const char kUnionPay[];
280 extern const char kVisaCard[]; 281 extern const char kVisaCard[];
281 282
282 } // namespace autofill 283 } // namespace autofill
283 284
284 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_CREDIT_CARD_H_ 285 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_CREDIT_CARD_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698