| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 namespace autofill { | |
| 6 | |
| 7 // These string constants are sent down from Wallet and synced cards and stored | |
| 8 // in the database for these masked credit cards records. | |
| 9 extern const char kSyncCardTypeAmex[]; | |
| 10 extern const char kSyncCardTypeDiscover[]; | |
| 11 extern const char kSyncCardTypeJCB[]; | |
| 12 extern const char kSyncCardTypeMaestro[]; | |
| 13 extern const char kSyncCardTypeMasterCard[]; | |
| 14 extern const char kSyncCardTypeSolo[]; | |
| 15 extern const char kSyncCardTypeSwitch[]; | |
| 16 extern const char kSyncCardTypeUnknown[]; | |
| 17 extern const char kSyncCardTypeVisa[]; | |
| 18 | |
| 19 } // namespace autofill | |
| OLD | NEW |