Commit 93dc01cb authored by sebsg's avatar sebsg Committed by Commit Bot

[Autofill] Add the dynamic form flag for iOS.

Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs
Change-Id: I3161ec166dce92c8f8014df17bd5315e05502058
Reviewed-on: https://chromium-review.googlesource.com/997155
Commit-Queue: Sebastien Seguin-Gagnon <sebsg@chromium.org>
Reviewed-by: default avatarMoe Ahmadi <mahmadi@chromium.org>
Cr-Commit-Position: refs/heads/master@{#548453}
parent c9781f04
...@@ -281,6 +281,9 @@ const flags_ui::FeatureEntry kFeatureEntries[] = { ...@@ -281,6 +281,9 @@ const flags_ui::FeatureEntry kFeatureEntries[] = {
{"unified-consent", flag_descriptions::kUnifiedConsentName, {"unified-consent", flag_descriptions::kUnifiedConsentName,
flag_descriptions::kUnifiedConsentDescription, flags_ui::kOsIos, flag_descriptions::kUnifiedConsentDescription, flags_ui::kOsIos,
FEATURE_VALUE_TYPE(signin::kUnifiedConsent)}, FEATURE_VALUE_TYPE(signin::kUnifiedConsent)},
{"autofill-dynamic-forms", flag_descriptions::kAutofillDynamicFormsName,
flag_descriptions::kAutofillDynamicFormsDescription, flags_ui::kOsIos,
FEATURE_VALUE_TYPE(autofill::features::kAutofillDynamicForms)},
}; };
// Add all switches from experimental flags to |command_line|. // Add all switches from experimental flags to |command_line|.
......
...@@ -16,6 +16,10 @@ const char kAutofillIOSDelayBetweenFieldsDescription[] = ...@@ -16,6 +16,10 @@ const char kAutofillIOSDelayBetweenFieldsDescription[] =
"Delay between the different fields of a form being autofilled. In " "Delay between the different fields of a form being autofilled. In "
"milliseconds."; "milliseconds.";
const char kAutofillDynamicFormsName[] = "Autofill dynamic forms";
const char kAutofillDynamicFormsDescription[] =
"Refills forms that dynamically change after an initial fill";
const char kBrowserTaskScheduler[] = "Task Scheduler"; const char kBrowserTaskScheduler[] = "Task Scheduler";
const char kBrowserTaskSchedulerDescription[] = const char kBrowserTaskSchedulerDescription[] =
"Enables redirection of some task posting APIs to the task scheduler."; "Enables redirection of some task posting APIs to the task scheduler.";
......
...@@ -11,6 +11,10 @@ namespace flag_descriptions { ...@@ -11,6 +11,10 @@ namespace flag_descriptions {
extern const char kAutofillIOSDelayBetweenFieldsName[]; extern const char kAutofillIOSDelayBetweenFieldsName[];
extern const char kAutofillIOSDelayBetweenFieldsDescription[]; extern const char kAutofillIOSDelayBetweenFieldsDescription[];
// Title and description for the flag to controll the dynamic autofill.
extern const char kAutofillDynamicFormsName[];
extern const char kAutofillDynamicFormsDescription[];
// Title and description for the flag to control redirection to the task // Title and description for the flag to control redirection to the task
// scheduler. // scheduler.
extern const char kBrowserTaskScheduler[]; extern const char kBrowserTaskScheduler[];
......
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