Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 #include "components/autofill/core/browser/autofill_sync_constants.h" | 5 #include "components/autofill/core/browser/autofill_sync_constants.h" |
| 6 | 6 |
| 7 namespace autofill { | 7 namespace autofill { |
| 8 | 8 |
| 9 const char kSyncCardTypeAmex[] = "AMEX"; | 9 const char kSyncCardTypeAmex[] = "AMEX"; |
| 10 const char kSyncCardTypeDiscover[] = "DISCOVER"; | 10 const char kSyncCardTypeDiscover[] = "DISCOVER"; |
| 11 const char kSyncCardTypeJCB[] = "JCB"; | 11 const char kSyncCardTypeJCB[] = "JCB"; |
| 12 const char kSyncCardTypeMaestro[] = "MAESTRO"; | 12 const char kSyncCardTypeMaestro[] = "MAESTRO"; |
| 13 const char kSyncCardTypeMasterCard[] = "MASTER_CARD"; | 13 const char kSyncCardTypeMasterCard[] = "MASTER_CARD"; |
| 14 const char kSyncCardTypeMir[] = "MIR"; | |
|
please use gerrit instead
2016/11/18 10:34:20
No need to add here.
| |
| 14 const char kSyncCardTypeSolo[] = "SOLO"; | 15 const char kSyncCardTypeSolo[] = "SOLO"; |
| 15 const char kSyncCardTypeSwitch[] = "SWITCH"; | 16 const char kSyncCardTypeSwitch[] = "SWITCH"; |
| 16 const char kSyncCardTypeUnknown[] = "UNKNOWN"; | 17 const char kSyncCardTypeUnknown[] = "UNKNOWN"; |
| 17 const char kSyncCardTypeVisa[] = "VISA"; | 18 const char kSyncCardTypeVisa[] = "VISA"; |
| 18 | 19 |
| 19 } // namespace autofill | 20 } // namespace autofill |
| OLD | NEW |