Index: chrome/browser/about_flags.cc |
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc |
index 1c9ccbeec1efe3ab70c3400aa26021323ea69fad..408444039109001978277cf243206b1282724c90 100644 |
--- a/chrome/browser/about_flags.cc |
+++ b/chrome/browser/about_flags.cc |
@@ -524,6 +524,16 @@ const Experiment::Choice kSupervisedUserSafeSitesChoices[] = { |
"online-check-only" } |
}; |
+const Experiment::Choice kV8PacChoices[] = { |
+ { IDS_GENERIC_EXPERIMENT_CHOICE_DEFAULT, "", "" }, |
+ { IDS_GENERIC_EXPERIMENT_CHOICE_ENABLED, |
+ switches::kV8PacMojoOutOfProcess, |
+ "enabled" }, |
+ { IDS_GENERIC_EXPERIMENT_CHOICE_DISABLED, |
+ switches::kDisableOutOfProcessPac, |
+ "disabled" } |
+}; |
+ |
// RECORDING USER METRICS FOR FLAGS: |
// ----------------------------------------------------------------------------- |
// The first line of the experiment is the internal name. If you'd like to |
@@ -2393,7 +2403,7 @@ const Experiment kExperiments[] = { |
IDS_FLAGS_V8_PAC_MOJO_OUT_OF_PROCESS_NAME, |
IDS_FLAGS_V8_PAC_MOJO_OUT_OF_PROCESS_DESCRIPTION, |
kOsDesktop, |
- SINGLE_VALUE_TYPE(switches::kV8PacMojoOutOfProcess), |
+ MULTI_VALUE_TYPE(kV8PacChoices), |
}, |
#if defined(OS_CHROMEOS) |
{ |