| OLD | NEW |
| 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 // So we can compare CreditCards with EXPECT_EQ(). | 259 // So we can compare CreditCards with EXPECT_EQ(). |
| 260 std::ostream& operator<<(std::ostream& os, const CreditCard& credit_card); | 260 std::ostream& operator<<(std::ostream& os, const CreditCard& credit_card); |
| 261 | 261 |
| 262 // The string identifiers for credit card icon resources. | 262 // The string identifiers for credit card icon resources. |
| 263 extern const char kAmericanExpressCard[]; | 263 extern const char kAmericanExpressCard[]; |
| 264 extern const char kDinersCard[]; | 264 extern const char kDinersCard[]; |
| 265 extern const char kDiscoverCard[]; | 265 extern const char kDiscoverCard[]; |
| 266 extern const char kGenericCard[]; | 266 extern const char kGenericCard[]; |
| 267 extern const char kJCBCard[]; | 267 extern const char kJCBCard[]; |
| 268 extern const char kMasterCard[]; | 268 extern const char kMasterCard[]; |
| 269 extern const char kMirCard[]; |
| 269 extern const char kUnionPay[]; | 270 extern const char kUnionPay[]; |
| 270 extern const char kVisaCard[]; | 271 extern const char kVisaCard[]; |
| 271 | 272 |
| 272 } // namespace autofill | 273 } // namespace autofill |
| 273 | 274 |
| 274 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_CREDIT_CARD_H_ | 275 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_CREDIT_CARD_H_ |
| OLD | NEW |