Commit 6f58adaa authored by Jared Saul's avatar Jared Saul Committed by Commit Bot

Add iOS flag entry for AutofillNoLocalSaveOnUploadSuccess

Change-Id: I54d188e1ddcc80aa9563934be7ac89470e00cadc
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1506449
Commit-Queue: Jared Saul <jsaul@google.com>
Reviewed-by: default avatarSebastien Seguin-Gagnon <sebsg@chromium.org>
Cr-Commit-Position: refs/heads/master@{#638728}
parent e78279dc
......@@ -115,7 +115,8 @@ const char kAutofillDynamicFormsDescription[] =
"Allows autofill to fill dynamically changing forms";
const char kAutofillNoLocalSaveOnUploadSuccessName[] =
"Disable locally saving card when credit card upload succeeds";
"Disable saving local copy of uploaded card when credit card upload "
"succeeds";
const char kAutofillNoLocalSaveOnUploadSuccessDescription[] =
"When enabled, no local copy of server card will be saved when credit card "
"upload succeeds.";
......
......@@ -313,6 +313,12 @@ const flags_ui::FeatureEntry kFeatureEntries[] = {
{"autofill-dynamic-forms", flag_descriptions::kAutofillDynamicFormsName,
flag_descriptions::kAutofillDynamicFormsDescription, flags_ui::kOsIos,
FEATURE_VALUE_TYPE(autofill::features::kAutofillDynamicForms)},
{"autofill-no-local-save-on-upload-success",
flag_descriptions::kAutofillNoLocalSaveOnUploadSuccessName,
flag_descriptions::kAutofillNoLocalSaveOnUploadSuccessDescription,
flags_ui::kOsIos,
FEATURE_VALUE_TYPE(
autofill::features::kAutofillNoLocalSaveOnUploadSuccess)},
{"autofill-prefilled-fields",
flag_descriptions::kAutofillPrefilledFieldsName,
flag_descriptions::kAutofillPrefilledFieldsDescription, flags_ui::kOsIos,
......
......@@ -142,6 +142,13 @@ const char kAutofillDynamicFormsName[] = "Autofill dynamic forms";
const char kAutofillDynamicFormsDescription[] =
"Refills forms that dynamically change after an initial fill";
const char kAutofillNoLocalSaveOnUploadSuccessName[] =
"Disable saving local copy of uploaded card when credit card upload "
"succeeds";
const char kAutofillNoLocalSaveOnUploadSuccessDescription[] =
"When enabled, no local copy of server card will be saved when credit card "
"upload succeeds.";
const char kAutofillPrefilledFieldsName[] = "Autofill prefilled forms";
const char kAutofillPrefilledFieldsDescription[] =
"Fills forms that contain a programmatically filled value.";
......
......@@ -111,6 +111,11 @@ extern const char kAppLauncherRefreshDescription[];
extern const char kAutofillDynamicFormsName[];
extern const char kAutofillDynamicFormsDescription[];
// Title and description for the flag to control saving FULL_SERVER_CARDS upon
// success of credit card upload.
extern const char kAutofillNoLocalSaveOnUploadSuccessName[];
extern const char kAutofillNoLocalSaveOnUploadSuccessDescription[];
// Title and description for the flag to control the dynamic autofill.
extern const char kAutofillPrefilledFieldsName[];
extern const char kAutofillPrefilledFieldsDescription[];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment