Index: components/autofill/core/browser/autofill_sync_constants.cc |
diff --git a/components/autofill/core/browser/autofill_sync_constants.cc b/components/autofill/core/browser/autofill_sync_constants.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b4ccf5fb7381c4c8ba6bfb3a24685452863d28f8 |
--- /dev/null |
+++ b/components/autofill/core/browser/autofill_sync_constants.cc |
@@ -0,0 +1,19 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "components/autofill/core/browser/autofill_sync_constants.h" |
+ |
+namespace autofill { |
+ |
+const char kSyncCardTypeAmex[] = "AMEX"; |
+const char kSyncCardTypeDiscover[] = "DISCOVER"; |
+const char kSyncCardTypeJCB[] = "JCB"; |
+const char kSyncCardTypeMaestro[] = "MAESTRO"; |
+const char kSyncCardTypeMasterCard[] = "MASTER_CARD"; |
+const char kSyncCardTypeSolo[] = "SOLO"; |
+const char kSyncCardTypeSwitch[] = "SWITCH"; |
+const char kSyncCardTypeUnknown[] = "UNKNOWN"; |
+const char kSyncCardTypeVisa[] = "VISA"; |
+ |
+} // namespace autofill |