blob: 9bf9867f7e06468a86431b1e8aef2706484c6bac [file] [log] [blame]
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef LOGIN_MANAGER_FEATURE_FLAGS_TABLES_H_
#define LOGIN_MANAGER_FEATURE_FLAGS_TABLES_H_
// This file defines mapping tables for translating Chrome feature flags in
// switch representation back to feature flags names.
//
// The tables have been extracted from Chrome revision
// 91fdd0ebe85424b9257762184a0f02b6a2ea03b4. There is no need to update the
// tables since it suffices to support switches which were valid at the cut-over
// point to the regular feature flags format. Any subsequently defined feature
// flags will have been written by Chrome in the feature flag format.
//
// The tables live in their own file so they can be included both from the
// implementation and test files.
namespace login_manager {
struct FeatureMappingEntry {
// Switch or feature name.
const char* const name;
// Switch value or feature enabled status ("0"/"1" for enabled/disabled).
const char* const value;
// Feature flag "internal name" the switch or feature name corresponds to.
const char* const feature_flag_name;
// Feature flag variation, i.e. index of the choice for multi-value
// chrome://flags items.
const uint8_t feature_flag_variation;
bool operator<(const FeatureMappingEntry& other) const {
int names = strcmp(name, other.name);
return names < 0 || (names == 0 && strcmp(value, other.value) < 0);
}
};
// A table listing feature names and their enabled status as used with
// --{enable,disable}-features together with the corresponding feature flag
// representation.
//
// This has been mechanically translated from information dumped from Chrome
// per https://chromium-review.googlesource.com/c/chromium/src/+/2560296 using
// this shell pipeline:
//
// cat /var/log/chrome/chrome |
// fgrep ' maps to feature ' |
// cut -d \ -f 5- |
// awk '$1 !~ /@/ { $1 = $1 "@0" } { print $0 }' |
// awk -F '[@ ]' '{ print "{\"" $6 "\",\"" $7 "\",\"" $1 "\"," $2 "}," }' |
// LC_ALL=C sort
//
// See file comment for more context.
constexpr FeatureMappingEntry kFeaturesMap[] = {
{"AVIF", "0", "enable-avif", 2},
{"AVIF", "1", "enable-avif", 1},
{"AbusiveOriginNotificationPermissionRevocation", "0",
"abusive-notification-permission-revocation", 2},
{"AbusiveOriginNotificationPermissionRevocation", "1",
"abusive-notification-permission-revocation", 1},
{"AccessibilityCursorColor", "0",
"enable-experimental-accessibility-cursor-colors", 2},
{"AccessibilityCursorColor", "1",
"enable-experimental-accessibility-cursor-colors", 1},
{"AccessiblePDFForm", "0", "accessible-pdf-form", 2},
{"AccessiblePDFForm", "1", "accessible-pdf-form", 1},
{"AccountIdMigration", "0", "account-id-migration", 2},
{"AccountIdMigration", "1", "account-id-migration", 1},
{"AccountManagementFlowsV2", "0", "account-management-flows-v2", 2},
{"AccountManagementFlowsV2", "1", "account-management-flows-v2", 1},
{"AdvancedPpdAttributes", "0", "enable-advanced-ppd-attributes", 2},
{"AdvancedPpdAttributes", "1", "enable-advanced-ppd-attributes", 1},
{"AlignFontDisplayAutoTimeoutWithLCPGoal", "0",
"align-font-display-auto-lcp", 14},
{"AlignFontDisplayAutoTimeoutWithLCPGoal", "1",
"align-font-display-auto-lcp", 1},
{"AlignFontDisplayAutoTimeoutWithLCPGoal:lcp-limit-in-ms/1000/"
"intervention-mode/failure",
"1", "align-font-display-auto-lcp", 7},
{"AlignFontDisplayAutoTimeoutWithLCPGoal:lcp-limit-in-ms/1000/"
"intervention-mode/swap",
"1", "align-font-display-auto-lcp", 13},
{"AlignFontDisplayAutoTimeoutWithLCPGoal:lcp-limit-in-ms/1250/"
"intervention-mode/failure",
"1", "align-font-display-auto-lcp", 6},
{"AlignFontDisplayAutoTimeoutWithLCPGoal:lcp-limit-in-ms/1250/"
"intervention-mode/swap",
"1", "align-font-display-auto-lcp", 12},
{"AlignFontDisplayAutoTimeoutWithLCPGoal:lcp-limit-in-ms/1500/"
"intervention-mode/failure",
"1", "align-font-display-auto-lcp", 5},
{"AlignFontDisplayAutoTimeoutWithLCPGoal:lcp-limit-in-ms/1500/"
"intervention-mode/swap",
"1", "align-font-display-auto-lcp", 11},
{"AlignFontDisplayAutoTimeoutWithLCPGoal:lcp-limit-in-ms/1750/"
"intervention-mode/failure",
"1", "align-font-display-auto-lcp", 4},
{"AlignFontDisplayAutoTimeoutWithLCPGoal:lcp-limit-in-ms/1750/"
"intervention-mode/swap",
"1", "align-font-display-auto-lcp", 10},
{"AlignFontDisplayAutoTimeoutWithLCPGoal:lcp-limit-in-ms/2000/"
"intervention-mode/failure",
"1", "align-font-display-auto-lcp", 3},
{"AlignFontDisplayAutoTimeoutWithLCPGoal:lcp-limit-in-ms/2000/"
"intervention-mode/swap",
"1", "align-font-display-auto-lcp", 9},
{"AlignFontDisplayAutoTimeoutWithLCPGoal:lcp-limit-in-ms/2250/"
"intervention-mode/failure",
"1", "align-font-display-auto-lcp", 2},
{"AlignFontDisplayAutoTimeoutWithLCPGoal:lcp-limit-in-ms/2250/"
"intervention-mode/swap",
"1", "align-font-display-auto-lcp", 8},
{"AllowAllSitesToInitiateMirroring", "0",
"allow-all-sites-to-initiate-mirroring", 2},
{"AllowAllSitesToInitiateMirroring", "1",
"allow-all-sites-to-initiate-mirroring", 1},
{"AllowDisableMouseAcceleration", "0", "allow-disable-mouse-acceleration",
2},
{"AllowDisableMouseAcceleration", "1", "allow-disable-mouse-acceleration",
1},
{"AllowScrollSettings", "0", "allow-scroll-settings", 2},
{"AllowScrollSettings", "1", "allow-scroll-settings", 1},
{"AllowSyncXHRInPageDismissal", "0", "allow-sync-xhr-in-page-dismissal", 2},
{"AllowSyncXHRInPageDismissal", "1", "allow-sync-xhr-in-page-dismissal", 1},
{"AppCache", "0", "app-cache", 2},
{"AppCache", "1", "app-cache", 1},
{"AppServiceAdaptiveIcon", "0", "app-service-adaptive-icon", 2},
{"AppServiceAdaptiveIcon", "1", "app-service-adaptive-icon", 1},
{"AppServiceExternalProtocol", "0", "app-service-external-protocol", 2},
{"AppServiceExternalProtocol", "1", "app-service-external-protocol", 1},
{"AppServiceIntentHandling", "0", "app-service-intent-handling", 2},
{"AppServiceIntentHandling", "1", "app-service-intent-handling", 1},
{"AppStoreBillingDebug", "0", "enable-debug-for-store-billing", 2},
{"AppStoreBillingDebug", "1", "enable-debug-for-store-billing", 1},
{"ArcCustomTabsExperiment", "0", "arc-custom-tabs-experiment", 2},
{"ArcCustomTabsExperiment", "1", "arc-custom-tabs-experiment", 1},
{"ArcEnableDocumentsProviderInFilesApp", "0", "arc-documents-provider", 2},
{"ArcEnableDocumentsProviderInFilesApp", "1", "arc-documents-provider", 1},
{"ArcEnableUnifiedAudioFocus", "0", "enable-arc-unified-audio-focus", 2},
{"ArcEnableUnifiedAudioFocus", "1", "enable-arc-unified-audio-focus", 1},
{"ArcFilePickerExperiment", "0", "arc-file-picker-experiment", 2},
{"ArcFilePickerExperiment", "1", "arc-file-picker-experiment", 1},
{"ArcNativeBridge64BitSupportExperiment", "0",
"arc-native-bridge-64bit-support-experiment", 2},
{"ArcNativeBridge64BitSupportExperiment", "1",
"arc-native-bridge-64bit-support-experiment", 1},
{"ArcNativeBridgeExperiment", "0", "arc-native-bridge-toggle", 2},
{"ArcNativeBridgeExperiment", "1", "arc-native-bridge-toggle", 1},
{"ArcUsbHost", "0", "arc-usb-host", 2},
{"ArcUsbHost", "1", "arc-usb-host", 1},
{"ArcUseHighMemoryDalvikProfile", "0", "arc-use-high-memory-dalvik-profile",
2},
{"ArcUseHighMemoryDalvikProfile", "1", "arc-use-high-memory-dalvik-profile",
1},
{"AssistAutoCorrect", "0", "enable-cros-ime-assist-autocorrect", 2},
{"AssistAutoCorrect", "1", "enable-cros-ime-assist-autocorrect", 1},
{"AssistMultiWord", "0", "enable-cros-ime-assist-multi-word", 2},
{"AssistMultiWord", "1", "enable-cros-ime-assist-multi-word", 1},
{"AssistPersonalInfo", "0", "enable-cros-ime-assist-personal-info", 2},
{"AssistPersonalInfo", "1", "enable-cros-ime-assist-personal-info", 1},
{"AssistantAppSupport", "0", "enable-assistant-app-support", 2},
{"AssistantAppSupport", "1", "enable-assistant-app-support", 1},
{"AssistantAudioEraser", "0", "enable-assistant-aec", 2},
{"AssistantAudioEraser", "1", "enable-assistant-aec", 1},
{"AssistantBetterOnboarding", "0", "enable-assistant-better-onboarding", 2},
{"AssistantBetterOnboarding", "1", "enable-assistant-better-onboarding", 1},
{"AssistantEnableMediaSessionIntegration", "0",
"enable-assistant-media-session-integration", 2},
{"AssistantEnableMediaSessionIntegration", "1",
"enable-assistant-media-session-integration", 1},
{"AssistantEnableStereoAudioInput", "0", "enable-assistant-stereo-input",
2},
{"AssistantEnableStereoAudioInput", "1", "enable-assistant-stereo-input",
1},
{"AssistantRoutines", "0", "enable-assistant-routines", 2},
{"AssistantRoutines", "1", "enable-assistant-routines", 1},
{"AssistantTimersV2", "0", "enable-assistant-timers-v2", 2},
{"AssistantTimersV2", "1", "enable-assistant-timers-v2", 1},
{"AudioFocusEnforcement", "0", "enable-audio-focus-enforcement", 2},
{"AudioFocusEnforcement", "1", "enable-audio-focus-enforcement", 1},
{"AudioPlayerJsModules", "0", "audio-player-js-modules", 2},
{"AudioPlayerJsModules", "1", "audio-player-js-modules", 1},
{"AudioWorkletRealtimeThread", "0", "audio-worklet-realtime-thread", 2},
{"AudioWorkletRealtimeThread", "1", "audio-worklet-realtime-thread", 1},
{"AutoScreenBrightness", "0", "auto-screen-brightness", 2},
{"AutoScreenBrightness", "1", "auto-screen-brightness", 1},
{"AutofillAlwaysReturnCloudTokenizedCard", "0",
"autofill-always-return-cloud-tokenized-card", 2},
{"AutofillAlwaysReturnCloudTokenizedCard", "1",
"autofill-always-return-cloud-tokenized-card", 1},
{"AutofillCacheQueryResponses", "0", "autofill-cache-query-responses", 2},
{"AutofillCacheQueryResponses", "1", "autofill-cache-query-responses", 1},
{"AutofillCreditCardAblationExperiment", "0",
"enable-autofill-credit-card-ablation-experiment", 2},
{"AutofillCreditCardAblationExperiment", "1",
"enable-autofill-credit-card-ablation-experiment", 1},
{"AutofillCreditCardAuthentication", "0",
"enable-autofill-credit-card-authentication", 2},
{"AutofillCreditCardAuthentication", "1",
"enable-autofill-credit-card-authentication", 1},
{"AutofillCreditCardUploadFeedback", "0",
"enable-autofill-credit-card-upload-feedback", 2},
{"AutofillCreditCardUploadFeedback", "1",
"enable-autofill-credit-card-upload-feedback", 1},
{"AutofillEnableAccountWalletStorage", "0",
"enable-autofill-account-wallet-storage", 2},
{"AutofillEnableAccountWalletStorage", "1",
"enable-autofill-account-wallet-storage", 1},
{"AutofillEnableCardNicknameManagement", "0",
"autofill-enable-card-nickname-management", 2},
{"AutofillEnableCardNicknameManagement", "1",
"autofill-enable-card-nickname-management", 1},
{"AutofillEnableCardNicknameUpstream", "0",
"autofill-enable-card-nickname-upstream", 2},
{"AutofillEnableCardNicknameUpstream", "1",
"autofill-enable-card-nickname-upstream", 1},
{"AutofillEnableGoogleIssuedCard", "0",
"autofill-enable-google-issued-card", 2},
{"AutofillEnableGoogleIssuedCard", "1",
"autofill-enable-google-issued-card", 1},
{"AutofillEnableStickyPaymentsBubble", "0",
"autofill-enable-sticky-payments-bubble", 2},
{"AutofillEnableStickyPaymentsBubble", "1",
"autofill-enable-sticky-payments-bubble", 1},
{"AutofillEnableToolbarStatusChip", "0",
"autofill-enable-toolbar-status-chip", 2},
{"AutofillEnableToolbarStatusChip", "1",
"autofill-enable-toolbar-status-chip", 1},
{"AutofillEnableVirtualCard", "0", "autofill-enable-virtual-card", 2},
{"AutofillEnableVirtualCard", "1", "autofill-enable-virtual-card", 1},
{"AutofillOffNoServerData", "0", "autofill-off-no-server-data", 2},
{"AutofillOffNoServerData", "1", "autofill-off-no-server-data", 1},
{"AutofillPreventMixedFormsFilling", "0", "mixed-forms-disable-autofill",
2},
{"AutofillPreventMixedFormsFilling", "1", "mixed-forms-disable-autofill",
1},
{"AutofillProfileClientValidation", "0",
"autofill-profile-client-validation", 2},
{"AutofillProfileClientValidation", "1",
"autofill-profile-client-validation", 1},
{"AutofillProfileServerValidation", "0",
"autofill-profile-server-validation", 2},
{"AutofillProfileServerValidation", "1",
"autofill-profile-server-validation", 1},
{"AutofillPruneSuggestions", "0", "autofill-prune-suggestions", 2},
{"AutofillPruneSuggestions", "1", "autofill-prune-suggestions", 1},
{"AutofillRestrictUnownedFieldsToFormlessCheckout", "0",
"autofill-restrict-formless-form-extraction", 2},
{"AutofillRestrictUnownedFieldsToFormlessCheckout", "1",
"autofill-restrict-formless-form-extraction", 1},
{"AutofillRichMetadataQueries", "0", "autofill-rich-metadata-queries", 2},
{"AutofillRichMetadataQueries", "1", "autofill-rich-metadata-queries", 1},
{"AutofillSaveAndFillVPA", "0", "enable-autofill-upi-vpa", 2},
{"AutofillSaveAndFillVPA", "1", "enable-autofill-upi-vpa", 1},
{"AutofillShowTypePredictions", "0", "show-autofill-type-predictions", 2},
{"AutofillShowTypePredictions", "1", "show-autofill-type-predictions", 1},
{"AutofillTokenPrefixMatching", "0",
"enable-suggestions-with-substring-match", 2},
{"AutofillTokenPrefixMatching", "1",
"enable-suggestions-with-substring-match", 1},
{"AutofillUpstream", "0", "enable-autofill-credit-card-upload", 2},
{"AutofillUpstream", "1", "enable-autofill-credit-card-upload", 1},
{"AutofillUseImprovedLabelDisambiguation", "0",
"autofill-use-improved-label-disambiguation", 2},
{"AutofillUseImprovedLabelDisambiguation", "1",
"autofill-use-improved-label-disambiguation", 1},
{"AvatarToolbarButton", "0", "avatar-toolbar-button", 2},
{"AvatarToolbarButton", "1", "avatar-toolbar-button", 1},
{"BackForwardCache", "0", "back-forward-cache", 4},
{"BackForwardCache", "1", "back-forward-cache", 1},
{"BackForwardCache:TimeToLiveInBackForwardCacheInSeconds/300/"
"should_ignore_blocklists/true/enable_same_site/true",
"1", "back-forward-cache", 3},
{"BackForwardCache:enable_same_site/true", "1", "back-forward-cache", 2},
{"Bento", "0", "enhanced-desks", 2},
{"Bento", "1", "enhanced-desks", 1},
{"BlockInsecurePrivateNetworkRequests", "0",
"block-insecure-private-network-requests", 2},
{"BlockInsecurePrivateNetworkRequests", "1",
"block-insecure-private-network-requests", 1},
{"BluetoothAggressiveAppearanceFilter", "0",
"bluetooth-aggressive-appearance-filter", 2},
{"BluetoothAggressiveAppearanceFilter", "1",
"bluetooth-aggressive-appearance-filter", 1},
{"BluetoothFixA2dpPacketSize", "0", "bluetooth-fix-a2dp-packet-size", 2},
{"BluetoothFixA2dpPacketSize", "1", "bluetooth-fix-a2dp-packet-size", 1},
{"BluetoothWbsDogfood", "0", "bluetooth-wbs-dogfood", 2},
{"BluetoothWbsDogfood", "1", "bluetooth-wbs-dogfood", 1},
{"BrowsingDataLifetimeManager", "0",
"enable-browsing-data-lifetime-manager", 2},
{"BrowsingDataLifetimeManager", "1",
"enable-browsing-data-lifetime-manager", 1},
{"CSSColorSchemeUARendering", "0", "form-controls-dark-mode", 2},
{"CSSColorSchemeUARendering", "1", "form-controls-dark-mode", 1},
{"CameraSystemWebApp", "0", "camera-system-web-app", 2},
{"CameraSystemWebApp", "1", "camera-system-web-app", 1},
{"CaptureMode", "0", "screen-capture", 2},
{"CaptureMode", "1", "screen-capture", 1},
{"CastAllowAllIPs", "0", "media-router-cast-allow-all-ips", 2},
{"CastAllowAllIPs", "1", "media-router-cast-allow-all-ips", 1},
{"CastMediaRouteProvider", "0", "cast-media-route-provider", 2},
{"CastMediaRouteProvider", "1", "cast-media-route-provider", 1},
{"CdmFactoryDaemon", "0", "cdm-factory-daemon", 2},
{"CdmFactoryDaemon", "1", "cdm-factory-daemon", 1},
{"CellularUseAttachApn", "0", "cellular-use-attach-apn", 2},
{"CellularUseAttachApn", "1", "cellular-use-attach-apn", 1},
{"ChangePasswordAffiliationInfo", "0", "change-password-affiliation", 2},
{"ChangePasswordAffiliationInfo", "1", "change-password-affiliation", 1},
{"CheckOfflineCapability", "0", "check-offline-capability", 4},
{"CheckOfflineCapability", "1", "check-offline-capability", 1},
{"CheckOfflineCapability:check_mode/enforce", "1",
"check-offline-capability", 3},
{"CheckOfflineCapability:check_mode/warn_only", "1",
"check-offline-capability", 2},
{"ChromeLabs", "0", "chrome-labs", 2},
{"ChromeLabs", "1", "chrome-labs", 1},
{"ClickToCallUI", "0", "click-to-call-ui", 2},
{"ClickToCallUI", "1", "click-to-call-ui", 1},
{"ClickToOpenPDFPlaceholder", "0", "click-to-open-pdf", 2},
{"ClickToOpenPDFPlaceholder", "1", "click-to-open-pdf", 1},
{"ClientStorageAccessContextAuditing", "0",
"client-storage-access-context-auditing", 2},
{"ClientStorageAccessContextAuditing", "1",
"client-storage-access-context-auditing", 1},
{"ClipboardHistory", "0", "enhanced_clipboard", 2},
{"ClipboardHistory", "1", "enhanced_clipboard", 1},
{"ClipboardHistoryNudgeSessionReset", "0",
"enhanced_clipboard_nudge_session_reset", 2},
{"ClipboardHistoryNudgeSessionReset", "1",
"enhanced_clipboard_nudge_session_reset", 1},
{"ClipboardHistorySimpleRender", "0", "enhanced_clipboard_simple_render",
2},
{"ClipboardHistorySimpleRender", "1", "enhanced_clipboard_simple_render",
1},
{"ColorProviderRedirection", "0", "color-provider-redirection", 2},
{"ColorProviderRedirection", "1", "color-provider-redirection", 1},
{"CompositorThreadedScrollbarScrolling", "0",
"compositor-threaded-scrollbar-scrolling", 2},
{"CompositorThreadedScrollbarScrolling", "1",
"compositor-threaded-scrollbar-scrolling", 1},
{"ConnectivityDiagnosticsWebUi", "0", "connectivity-diagnostics-webui", 2},
{"ConnectivityDiagnosticsWebUi", "1", "connectivity-diagnostics-webui", 1},
{"ContentSettingsRedesign", "0", "content-settings-redesign", 2},
{"ContentSettingsRedesign", "1", "content-settings-redesign", 1},
{"ContextualNudges", "0", "contextual-nudges", 2},
{"ContextualNudges", "1", "contextual-nudges", 1},
{"ConversionMeasurement", "0", "conversion-measurement-api", 2},
{"ConversionMeasurement", "1", "conversion-measurement-api", 1},
{"CookieDeprecationMessages", "0", "cookie-deprecation-messages", 2},
{"CookieDeprecationMessages", "1", "cookie-deprecation-messages", 1},
{"CookiesWithoutSameSiteMustBeSecure", "0",
"cookies-without-same-site-must-be-secure", 2},
{"CookiesWithoutSameSiteMustBeSecure", "1",
"cookies-without-same-site-must-be-secure", 1},
{"CooperativeScheduling", "0", "enable-cooperative-scheduling", 2},
{"CooperativeScheduling", "1", "enable-cooperative-scheduling", 1},
{"CopyLinkToText", "0", "copy-link-to-text", 2},
{"CopyLinkToText", "1", "copy-link-to-text", 1},
{"CrOSAutoSelect", "0", "enable-auto-select", 2},
{"CrOSAutoSelect", "1", "enable-auto-select", 1},
{"CrossOriginIsolated", "0", "cross-origin-isolated", 2},
{"CrossOriginIsolated", "1", "cross-origin-isolated", 1},
{"CrossOriginOpenerPolicyAccessReporting", "0",
"cross-origin-opener-policy-access-reporting", 2},
{"CrossOriginOpenerPolicyAccessReporting", "1",
"cross-origin-opener-policy-access-reporting", 1},
{"CrossOriginOpenerPolicyReporting", "0",
"cross-origin-opener-policy-reporting", 2},
{"CrossOriginOpenerPolicyReporting", "1",
"cross-origin-opener-policy-reporting", 1},
{"CrostiniDiskResizing", "0", "crostini-disk-resizing", 2},
{"CrostiniDiskResizing", "1", "crostini-disk-resizing", 1},
{"CrostiniEnableDlc", "0", "crostini-enable-dlc", 2},
{"CrostiniEnableDlc", "1", "crostini-enable-dlc", 1},
{"CrostiniGpuSupport", "0", "crostini-gpu-support", 2},
{"CrostiniGpuSupport", "1", "crostini-gpu-support", 1},
{"CrostiniResetLxdDb", "0", "crostini-reset-lxd-db", 2},
{"CrostiniResetLxdDb", "1", "crostini-reset-lxd-db", 1},
{"CrostiniUseBusterImage", "0", "crostini-use-buster-image", 2},
{"CrostiniUseBusterImage", "1", "crostini-use-buster-image", 1},
{"CrostiniUseDlc", "0", "crostini-use-dlc", 2},
{"CrostiniUseDlc", "1", "crostini-use-dlc", 1},
{"CrostiniWebUIUpgrader", "0", "crostini-webui-upgrader", 2},
{"CrostiniWebUIUpgrader", "1", "crostini-webui-upgrader", 1},
{"CryptAuthV2DeviceActivityStatus", "0",
"cryptauth-v2-device-activity-status", 2},
{"CryptAuthV2DeviceActivityStatus", "1",
"cryptauth-v2-device-activity-status", 1},
{"CryptAuthV2DeviceActivityStatusUseConnectivity", "0",
"cryptauth-v2-device-activity-status-use-connectivity", 2},
{"CryptAuthV2DeviceActivityStatusUseConnectivity", "1",
"cryptauth-v2-device-activity-status-use-connectivity", 1},
{"CryptAuthV2DeviceSync", "0", "cryptauth-v2-devicesync", 2},
{"CryptAuthV2DeviceSync", "1", "cryptauth-v2-devicesync", 1},
{"CryptAuthV2Enrollment", "0", "cryptauth-v2-enrollment", 2},
{"CryptAuthV2Enrollment", "1", "cryptauth-v2-enrollment", 1},
{"DarkLightMode", "0", "dark-light-mode", 2},
{"DarkLightMode", "1", "dark-light-mode", 1},
{"DecodeJpeg420ImagesToYUV", "0", "decode-jpeg-images-to-yuv", 2},
{"DecodeJpeg420ImagesToYUV", "1", "decode-jpeg-images-to-yuv", 1},
{"DecodeLossyWebPImagesToYUV", "0", "decode-webp-images-to-yuv", 2},
{"DecodeLossyWebPImagesToYUV", "1", "decode-webp-images-to-yuv", 1},
{"DeferAllScript", "0", "enable-defer-all-script", 2},
{"DeferAllScript", "1", "enable-defer-all-script", 1},
{"DelayCompetingLowPriorityRequests", "0",
"delay-competing-low-priority-requests", 7},
{"DelayCompetingLowPriorityRequests", "1",
"delay-competing-low-priority-requests", 1},
{"DelayCompetingLowPriorityRequests:until/always/priority_threshold/high",
"1", "delay-competing-low-priority-requests", 6},
{"DelayCompetingLowPriorityRequests:until/first_contentful_paint/"
"priority_threshold/high",
"1", "delay-competing-low-priority-requests", 5},
{"DelayCompetingLowPriorityRequests:until/first_contentful_paint/"
"priority_threshold/medium",
"1", "delay-competing-low-priority-requests", 3},
{"DelayCompetingLowPriorityRequests:until/first_paint/priority_threshold/"
"high",
"1", "delay-competing-low-priority-requests", 4},
{"DelayCompetingLowPriorityRequests:until/first_paint/priority_threshold/"
"medium",
"1", "delay-competing-low-priority-requests", 2},
{"DesktopPWAsAppIconShortcutsMenu", "0",
"enable-desktop-pwas-app-icon-shortcuts-menu", 2},
{"DesktopPWAsAppIconShortcutsMenu", "1",
"enable-desktop-pwas-app-icon-shortcuts-menu", 1},
{"DesktopPWAsElidedExtensionsMenu", "0",
"enable-desktop-pwas-elided-extensions-menu", 2},
{"DesktopPWAsElidedExtensionsMenu", "1",
"enable-desktop-pwas-elided-extensions-menu", 1},
{"DesktopPWAsFlashAppNameInsteadOfOrigin", "0",
"enable-desktop-pwas-flash-app-name-instead-of-origin", 2},
{"DesktopPWAsFlashAppNameInsteadOfOrigin", "1",
"enable-desktop-pwas-flash-app-name-instead-of-origin", 1},
{"DesktopPWAsRunOnOsLogin", "0", "enable-desktop-pwas-run-on-os-login", 2},
{"DesktopPWAsRunOnOsLogin", "1", "enable-desktop-pwas-run-on-os-login", 1},
{"DesktopPWAsTabStrip", "0", "enable-desktop-pwas-tab-strip", 2},
{"DesktopPWAsTabStrip", "1", "enable-desktop-pwas-tab-strip", 1},
{"DesktopPWAsTabStripLinkCapturing", "0",
"enable-desktop-pwas-tab-strip-link-capturing", 2},
{"DesktopPWAsTabStripLinkCapturing", "1",
"enable-desktop-pwas-tab-strip-link-capturing", 1},
{"DestroyProfileOnBrowserClose", "0", "destroy-profile-on-browser-close",
2},
{"DestroyProfileOnBrowserClose", "1", "destroy-profile-on-browser-close",
1},
{"DetectFormSubmissionOnFormClear", "0",
"detect-form-submission-on-form-clear", 2},
{"DetectFormSubmissionOnFormClear", "1",
"detect-form-submission-on-form-clear", 1},
{"DiagnosticsApp", "0", "diagnostics-app", 2},
{"DiagnosticsApp", "1", "diagnostics-app", 1},
{"DirectManipulationStylus", "0", "direct-manipulation-stylus", 2},
{"DirectManipulationStylus", "1", "direct-manipulation-stylus", 1},
{"DisableCameraFrameRotationAtSource", "0",
"disable-camera-frame-rotation-at-source", 2},
{"DisableCameraFrameRotationAtSource", "1",
"disable-camera-frame-rotation-at-source", 1},
{"DisableCryptAuthV1DeviceSync", "0", "disable-cryptauth-v1-devicesync", 2},
{"DisableCryptAuthV1DeviceSync", "1", "disable-cryptauth-v1-devicesync", 1},
{"DisableKeepaliveFetch", "0", "disable-keepalive-fetch", 2},
{"DisableKeepaliveFetch", "1", "disable-keepalive-fetch", 1},
{"DisableOfficeEditingComponentApp", "0",
"disable-office-editing-component-app", 2},
{"DisableOfficeEditingComponentApp", "1",
"disable-office-editing-component-app", 1},
{"DisplayAlignAssist", "0", "display-alignment-assistance", 2},
{"DisplayAlignAssist", "1", "display-alignment-assistance", 1},
{"DisplayIdentification", "0", "display-identification", 2},
{"DisplayIdentification", "1", "display-identification", 1},
{"DnsHttpssvc", "0", "dns-httpssvc", 2},
{"DnsHttpssvc", "1", "dns-httpssvc", 1},
{"DnsOverHttps", "0", "dns-over-https", 2},
{"DnsOverHttps", "1", "dns-over-https", 1},
{"DoubleTapToZoomInTabletMode", "0", "double-tap-to-zoom-in-tablet-mode",
2},
{"DoubleTapToZoomInTabletMode", "1", "double-tap-to-zoom-in-tablet-mode",
1},
{"DriveFsBidirectionalNativeMessaging", "0",
"drive-fs-bidirectional-native-messaging", 2},
{"DriveFsBidirectionalNativeMessaging", "1",
"drive-fs-bidirectional-native-messaging", 1},
{"DynamicTcmallocTuning", "0", "dynamic-tcmalloc-tuning", 2},
{"DynamicTcmallocTuning", "1", "dynamic-tcmalloc-tuning", 1},
{"EditPasswordsInSettings", "0", "edit-passwords-in-settings", 2},
{"EditPasswordsInSettings", "1", "edit-passwords-in-settings", 1},
{"EmojiSuggestAddition", "0", "enable-cros-ime-emoji-suggest-addition", 2},
{"EmojiSuggestAddition", "1", "enable-cros-ime-emoji-suggest-addition", 1},
{"EnableAppDataSearch", "0", "enable-app-data-search", 2},
{"EnableAppDataSearch", "1", "enable-app-data-search", 1},
{"EnableAppGridGhost", "0", "enable-app-grid-ghost", 2},
{"EnableAppGridGhost", "1", "enable-app-grid-ghost", 1},
{"EnableAppListSearchAutocomplete", "0",
"enable-app-list-search-autocomplete", 2},
{"EnableAppListSearchAutocomplete", "1",
"enable-app-list-search-autocomplete", 1},
{"EnableAppReinstallZeroState", "0",
"enable-zero-state-app-reinstall-suggestions", 2},
{"EnableAppReinstallZeroState", "1",
"enable-zero-state-app-reinstall-suggestions", 1},
{"EnableAriaElementReflection", "0", "enable-aria-element-reflection", 2},
{"EnableAriaElementReflection", "1", "enable-aria-element-reflection", 1},
{"EnableBackgroundBlur", "0", "enable-background-blur", 2},
{"EnableBackgroundBlur", "1", "enable-background-blur", 1},
{"EnableBluetoothVerboseLogsForGooglers", "0",
"enable-bluetooth-verbose-logs-for-googlers", 2},
{"EnableBluetoothVerboseLogsForGooglers", "1",
"enable-bluetooth-verbose-logs-for-googlers", 1},
{"EnableDspHotword", "0", "enable-assistant-dsp", 2},
{"EnableDspHotword", "1", "enable-assistant-dsp", 1},
{"EnableEmbeddedAssistantUI", "0", "enable-assistant-launcher-integration",
2},
{"EnableEmbeddedAssistantUI", "1", "enable-assistant-launcher-integration",
1},
{"EnableFilesAppCopyImage", "0", "files-app-copy-image", 2},
{"EnableFilesAppCopyImage", "1", "files-app-copy-image", 1},
{"EnableHardwareMirrorMode", "0", "enable-hardware_mirror-mode", 2},
{"EnableHardwareMirrorMode", "1", "enable-hardware_mirror-mode", 1},
{"EnableHeuristicPalmDetectionFilter", "0",
"enable-heuristic-stylus-palm-rejection", 2},
{"EnableHeuristicPalmDetectionFilter", "1",
"enable-heuristic-stylus-palm-rejection", 1},
{"EnableHostnameSetting", "0", "enable-hostname-setting", 2},
{"EnableHostnameSetting", "1", "enable-hostname-setting", 1},
{"EnableLauncherSearchNormalization", "0", "launcher-search-normalization",
2},
{"EnableLauncherSearchNormalization", "1", "launcher-search-normalization",
1},
{"EnableNeuralPalmDetectionFilter", "0",
"enable-neural-stylus-palm-rejection", 2},
{"EnableNeuralPalmDetectionFilter", "1",
"enable-neural-stylus-palm-rejection", 1},
{"EnableNewBadgeOnMenuItems", "0", "enable-new-badge-on-menu-items", 2},
{"EnableNewBadgeOnMenuItems", "1", "enable-new-badge-on-menu-items", 1},
{"EnableNotificationIndicator", "0", "enable-notification-indicator", 2},
{"EnableNotificationIndicator", "1", "enable-notification-indicator", 1},
{"EnableOmniboxRichEntities", "0", "omnibox-rich-entities-in-launcher", 3},
{"EnableOmniboxRichEntities", "1", "omnibox-rich-entities-in-launcher", 1},
{"EnableOmniboxRichEntities:", "1", "omnibox-rich-entities-in-launcher", 2},
{"EnableOopPrintDrivers", "0", "enable-oop-print-drivers", 2},
{"EnableOopPrintDrivers", "1", "enable-oop-print-drivers", 1},
{"EnablePalmOnMaxTouchMajor", "0", "enable-palm-max-touch-major", 2},
{"EnablePalmOnMaxTouchMajor", "1", "enable-palm-max-touch-major", 1},
{"EnablePalmOnToolTypePalm", "0", "enable-palm-tool-type-palm", 2},
{"EnablePalmOnToolTypePalm", "1", "enable-palm-tool-type-palm", 1},
{"EnablePalmSuppression", "0", "enable-palm-suppression", 2},
{"EnablePalmSuppression", "1", "enable-palm-suppression", 1},
{"EnablePasswordsAccountStorage", "0", "passwords-account-storage", 2},
{"EnablePasswordsAccountStorage", "1", "passwords-account-storage", 1},
{"EnableRemovingAllThirdPartyCookies", "0",
"enable-removing-all-third-party-cookies", 2},
{"EnableRemovingAllThirdPartyCookies", "1",
"enable-removing-all-third-party-cookies", 1},
{"EnableSuggestedFiles", "0", "enable-suggested-files", 2},
{"EnableSuggestedFiles", "1", "enable-suggested-files", 1},
{"EnableTLS13EarlyData", "0", "enable-tls13-early-data", 2},
{"EnableTLS13EarlyData", "1", "enable-tls13-early-data", 1},
{"EnhancedDeskAnimations", "0", "enhanced-desk-animations", 2},
{"EnhancedDeskAnimations", "1", "enhanced-desk-animations", 1},
{"EnterpriseRealtimeExtensionRequest", "0",
"enterprise-realtime-extension-request", 2},
{"EnterpriseRealtimeExtensionRequest", "1",
"enterprise-realtime-extension-request", 1},
{"EnterpriseReportingInChromeOS", "0", "enterprise-reporting-in-chromeos",
2},
{"EnterpriseReportingInChromeOS", "1", "enterprise-reporting-in-chromeos",
1},
{"EvDetailsInPageInfo", "0", "ev-details-in-page-info", 2},
{"EvDetailsInPageInfo", "1", "ev-details-in-page-info", 1},
{"ExoGamepadVibration", "0", "exo-gamepad-vibration", 2},
{"ExoGamepadVibration", "1", "exo-gamepad-vibration", 1},
{"ExoOrdinalMotion", "0", "exo-ordinal-motion", 2},
{"ExoOrdinalMotion", "1", "exo-ordinal-motion", 1},
{"ExoPointerLock", "0", "exo-pointer-lock", 2},
{"ExoPointerLock", "1", "exo-pointer-lock", 1},
{"ExpensiveBackgroundTimerThrottling", "0",
"expensive-background-timer-throttling", 2},
{"ExpensiveBackgroundTimerThrottling", "1",
"expensive-background-timer-throttling", 1},
{"ExperimentalFlingAnimation", "0", "enable-experimental-fling-animation",
2},
{"ExperimentalFlingAnimation", "1", "enable-experimental-fling-animation",
1},
{"ExtensionsCheckup", "0", "extension-checkup", 8},
{"ExtensionsCheckup", "1", "extension-checkup", 1},
{"ExtensionsCheckup:banner_message_type/0/entry_point/promo", "1",
"extension-checkup", 5},
{"ExtensionsCheckup:banner_message_type/0/entry_point/startup", "1",
"extension-checkup", 2},
{"ExtensionsCheckup:banner_message_type/1/entry_point/promo", "1",
"extension-checkup", 6},
{"ExtensionsCheckup:banner_message_type/1/entry_point/startup", "1",
"extension-checkup", 3},
{"ExtensionsCheckup:banner_message_type/2/entry_point/promo", "1",
"extension-checkup", 7},
{"ExtensionsCheckup:banner_message_type/2/entry_point/startup", "1",
"extension-checkup", 4},
{"EyeDropper", "0", "color-picker-eye-dropper", 2},
{"EyeDropper", "1", "color-picker-eye-dropper", 1},
{"FileHandlingAPI", "0", "file-handling-api", 2},
{"FileHandlingAPI", "1", "file-handling-api", 1},
{"FilesCameraFolder", "0", "files-camera-folder", 2},
{"FilesCameraFolder", "1", "files-camera-folder", 1},
{"FilesJsModules", "0", "files-js-modules", 2},
{"FilesJsModules", "1", "files-js-modules", 1},
{"FilesNG", "0", "files-ng", 2},
{"FilesNG", "1", "files-ng", 1},
{"FilesSWA", "0", "files-swa", 2},
{"FilesSWA", "1", "files-swa", 1},
{"FilesSinglePartitionFormat", "0", "files-single-partition-format", 2},
{"FilesSinglePartitionFormat", "1", "files-single-partition-format", 1},
{"FilesTrash", "0", "files-trash", 2},
{"FilesTrash", "1", "files-trash", 1},
{"FilesZipMount", "0", "files-zip-mount", 2},
{"FilesZipMount", "1", "files-zip-mount", 1},
{"FilesZipPack", "0", "files-zip-pack", 2},
{"FilesZipPack", "1", "files-zip-pack", 1},
{"FilesZipUnpack", "0", "files-zip-unpack", 2},
{"FilesZipUnpack", "1", "files-zip-unpack", 1},
{"FilteringScrollPrediction", "0", "enable-filtering-scroll-events", 4},
{"FilteringScrollPrediction", "1", "enable-filtering-scroll-events", 1},
{"FilteringScrollPrediction:filter/empty_filter", "1",
"enable-filtering-scroll-events", 2},
{"FilteringScrollPrediction:filter/one_euro_filter", "1",
"enable-filtering-scroll-events", 3},
{"FiltersInRecents", "0", "files-filters-in-recents", 2},
{"FiltersInRecents", "1", "files-filters-in-recents", 1},
{"FirstPartySets", "0", "enable-first-party-sets", 2},
{"FirstPartySets", "1", "enable-first-party-sets", 1},
{"FirstScrollLatencyMeasurement", "0",
"enable-first-scroll-latency-measurement", 2},
{"FirstScrollLatencyMeasurement", "1",
"enable-first-scroll-latency-measurement", 1},
{"FocusMode", "0", "focus-mode", 2},
{"FocusMode", "1", "focus-mode", 1},
{"FontAccess", "0", "font-access", 2},
{"FontAccess", "1", "font-access", 1},
{"FontAccessChooser", "0", "font-access-chooser", 2},
{"FontAccessChooser", "1", "font-access-chooser", 1},
{"ForceEnablePrivetPrinting", "0", "force-enable-privet-printing", 2},
{"ForceEnablePrivetPrinting", "1", "force-enable-privet-printing", 1},
{"ForcePreferredIntervalForVideo", "0",
"force-preferred-interval-for-video", 2},
{"ForcePreferredIntervalForVideo", "1",
"force-preferred-interval-for-video", 1},
{"ForceSpectreVariant2Mitigation", "0", "force-spectre-v2-mitigation", 2},
{"ForceSpectreVariant2Mitigation", "1", "force-spectre-v2-mitigation", 1},
{"ForcedColors", "0", "forced-colors", 2},
{"ForcedColors", "1", "forced-colors", 1},
{"FormControlsRefresh", "0", "form-controls-refresh", 2},
{"FormControlsRefresh", "1", "form-controls-refresh", 1},
{"FractionalScrollOffsets", "0", "fractional-scroll-offsets", 2},
{"FractionalScrollOffsets", "1", "fractional-scroll-offsets", 1},
{"FreezeUserAgent", "0", "freeze-user-agent", 2},
{"FreezeUserAgent", "1", "freeze-user-agent", 1},
{"FsNosymfollow", "0", "enable-fs-nosymfollow", 2},
{"FsNosymfollow", "1", "enable-fs-nosymfollow", 1},
{"FtpProtocol", "0", "enable-ftp", 2},
{"FtpProtocol", "1", "enable-ftp", 1},
{"FullRestore", "0", "full-restore", 2},
{"FullRestore", "1", "full-restore", 1},
{"GenericSensorExtraClasses", "0", "enable-generic-sensor-extra-classes",
2},
{"GenericSensorExtraClasses", "1", "enable-generic-sensor-extra-classes",
1},
{"GesturePropertiesDBusService", "0", "gesture-properties-dbus-service", 2},
{"GesturePropertiesDBusService", "1", "gesture-properties-dbus-service", 1},
{"GlobalMediaControls", "0", "global-media-controls", 2},
{"GlobalMediaControls", "1", "global-media-controls", 1},
{"GlobalMediaControlsCastStartStop", "0",
"global-media-controls-cast-start-stop", 2},
{"GlobalMediaControlsCastStartStop", "1",
"global-media-controls-cast-start-stop", 1},
{"GlobalMediaControlsForCast", "0", "global-media-controls-for-cast", 2},
{"GlobalMediaControlsForCast", "1", "global-media-controls-for-cast", 1},
{"GlobalMediaControlsForChromeOS", "0",
"global-media-controls-for-chromeos", 2},
{"GlobalMediaControlsForChromeOS", "1",
"global-media-controls-for-chromeos", 1},
{"GlobalMediaControlsModernUI", "0", "global-media-controls-modern-ui", 2},
{"GlobalMediaControlsModernUI", "1", "global-media-controls-modern-ui", 1},
{"GlobalMediaControlsOverlayControls", "0",
"global-media-controls-overlay-controls", 2},
{"GlobalMediaControlsOverlayControls", "1",
"global-media-controls-overlay-controls", 1},
{"GlobalMediaControlsPictureInPicture", "0",
"global-media-controls-picture-in-picture", 2},
{"GlobalMediaControlsPictureInPicture", "1",
"global-media-controls-picture-in-picture", 1},
{"GlobalMediaControlsSeamlessTransfer", "0",
"global-media-controls-seamless-transfer", 2},
{"GlobalMediaControlsSeamlessTransfer", "1",
"global-media-controls-seamless-transfer", 1},
{"GuestOsExternalProtocol", "0", "guest-os-external-protocol", 2},
{"GuestOsExternalProtocol", "1", "guest-os-external-protocol", 1},
{"H264DecoderBufferIsCompleteFrame", "0",
"h264-decoder-is-buffer-complete-frame", 2},
{"H264DecoderBufferIsCompleteFrame", "1",
"h264-decoder-is-buffer-complete-frame", 1},
{"HandwritingGesture", "0", "handwriting-gesture", 2},
{"HandwritingGesture", "1", "handwriting-gesture", 1},
{"HandwritingGestureEditing", "0", "handwriting-gesture-editing", 2},
{"HandwritingGestureEditing", "1", "handwriting-gesture-editing", 1},
{"HappinessTrackingSurveysForDesktop", "0",
"happiness-tracking-surveys-for-desktop", 2},
{"HappinessTrackingSurveysForDesktop", "1",
"happiness-tracking-surveys-for-desktop", 1},
{"HappinessTrackingSurveysForDesktopDemo", "0",
"happiness-tracking-surveys-for-desktop-demo", 2},
{"HappinessTrackingSurveysForDesktopDemo", "1",
"happiness-tracking-surveys-for-desktop-demo", 1},
{"HappinessTrackingSurveysForDesktopDevToolsIssuesCookiesSameSite", "0",
"happiness-tracking-surveys-for-desktop-devtools-issues-cookies-same-site",
2},
{"HappinessTrackingSurveysForDesktopDevToolsIssuesCookiesSameSite", "1",
"happiness-tracking-surveys-for-desktop-devtools-issues-cookies-same-site",
1},
{"HappinessTrackingSurveysForDesktopMigration", "0",
"happiness-tracking-surveys-for-desktop-migration", 2},
{"HappinessTrackingSurveysForDesktopMigration", "1",
"happiness-tracking-surveys-for-desktop-migration", 1},
{"HappinessTrackingSurveysForDesktopSettings", "0",
"happiness-tracking-surveys-for-desktop-settings", 2},
{"HappinessTrackingSurveysForDesktopSettings", "1",
"happiness-tracking-surveys-for-desktop-settings", 1},
{"HappinessTrackingSurveysForDesktopSettingsPrivacy", "0",
"happiness-tracking-surveys-for-desktop-settings-privacy", 2},
{"HappinessTrackingSurveysForDesktopSettingsPrivacy", "1",
"happiness-tracking-surveys-for-desktop-settings-privacy", 1},
{"HardwareMediaKeyHandling", "0", "hardware-media-key-handling", 2},
{"HardwareMediaKeyHandling", "1", "hardware-media-key-handling", 1},
{"HeavyAdIntervention", "0", "enable-heavy-ad-intervention", 2},
{"HeavyAdIntervention", "1", "enable-heavy-ad-intervention", 1},
{"HeavyAdPrivacyMitigations", "0", "heavy-ad-privacy-mitigations", 2},
{"HeavyAdPrivacyMitigations", "1", "heavy-ad-privacy-mitigations", 1},
{"HelpAppSearchServiceIntegration", "0",
"help-app-search-service-integration", 2},
{"HelpAppSearchServiceIntegration", "1",
"help-app-search-service-integration", 1},
{"HideArcMediaNotifications", "0", "enable-hide-arc-media-notifications",
2},
{"HideArcMediaNotifications", "1", "enable-hide-arc-media-notifications",
1},
{"HideShelfControlsInTabletMode", "0", "shelf-hide-buttons-in-tablet", 2},
{"HideShelfControlsInTabletMode", "1", "shelf-hide-buttons-in-tablet", 1},
{"HistoryManipulationIntervention", "0",
"enable-history-manipulation-intervention", 2},
{"HistoryManipulationIntervention", "1",
"enable-history-manipulation-intervention", 1},
{"HudDisplayForPerformanceMetrics", "0", "show-performance-metrics-hud", 2},
{"HudDisplayForPerformanceMetrics", "1", "show-performance-metrics-hud", 1},
{"IPH_DemoMode", "0", "in-product-help-demo-mode-choice", 10},
{"IPH_DemoMode", "1", "in-product-help-demo-mode-choice", 1},
{"IPH_DemoMode:chosen_feature/IPH_DesktopPwaInstall", "1",
"in-product-help-demo-mode-choice", 9},
{"IPH_DemoMode:chosen_feature/IPH_DesktopTabGroupsNewGroup", "1",
"in-product-help-demo-mode-choice", 2},
{"IPH_DemoMode:chosen_feature/IPH_FocusMode", "1",
"in-product-help-demo-mode-choice", 3},
{"IPH_DemoMode:chosen_feature/IPH_GlobalMediaControls", "1",
"in-product-help-demo-mode-choice", 4},
{"IPH_DemoMode:chosen_feature/IPH_LiveCaption", "1",
"in-product-help-demo-mode-choice", 5},
{"IPH_DemoMode:chosen_feature/IPH_PasswordsAccountStorage", "1",
"in-product-help-demo-mode-choice", 6},
{"IPH_DemoMode:chosen_feature/IPH_ReopenTab", "1",
"in-product-help-demo-mode-choice", 7},
{"IPH_DemoMode:chosen_feature/IPH_WebUITabStrip", "1",
"in-product-help-demo-mode-choice", 8},
{"IPH_DesktopSnoozeFeature", "0", "desktop-in-product-help-snooze", 2},
{"IPH_DesktopSnoozeFeature", "1", "desktop-in-product-help-snooze", 1},
{"IPH_PasswordsAccountStorage", "0", "passwords-account-storage-iph", 2},
{"IPH_PasswordsAccountStorage", "1", "passwords-account-storage-iph", 1},
{"IframeOneGoogleBar", "0", "ntp-iframe-one-google-bar", 2},
{"IframeOneGoogleBar", "1", "ntp-iframe-one-google-bar", 1},
{"ImeMojoDecoder", "0", "enable-cros-ime-service-decoder", 2},
{"ImeMojoDecoder", "1", "enable-cros-ime-service-decoder", 1},
{"ImeMozcProto", "0", "enable-cros-ime-mozc-proto", 2},
{"ImeMozcProto", "1", "enable-cros-ime-mozc-proto", 1},
{"ImpulseScrollAnimations", "0", "impulse-scroll-animations", 2},
{"ImpulseScrollAnimations", "1", "impulse-scroll-animations", 1},
{"InsecureFormSubmissionInterstitial", "0", "mixed-forms-interstitial", 2},
{"InsecureFormSubmissionInterstitial", "1", "mixed-forms-interstitial", 1},
{"InsertKeyToggleMode", "0", "insert-key-toggle-mode", 2},
{"InsertKeyToggleMode", "1", "insert-key-toggle-mode", 1},
{"InstallableInkDrop", "0", "installable-ink-drop", 2},
{"InstallableInkDrop", "1", "installable-ink-drop", 1},
{"InstalledAppsInCbd", "0", "installed-apps-in-cbd", 2},
{"InstalledAppsInCbd", "1", "installed-apps-in-cbd", 1},
{"InstantTethering", "0", "instant-tethering", 2},
{"InstantTethering", "1", "instant-tethering", 1},
{"IntensiveWakeUpThrottling", "0", "intensive-wake-up-throttling", 3},
{"IntensiveWakeUpThrottling", "1", "intensive-wake-up-throttling", 1},
{"IntensiveWakeUpThrottling:grace_period_seconds/10", "1",
"intensive-wake-up-throttling", 2},
{"IntentHandlingSharing", "0", "intent-handling-sharing", 2},
{"IntentHandlingSharing", "1", "intent-handling-sharing", 1},
{"IntentPickerPWAPersistence", "0", "intent-picker-pwa-persistence", 2},
{"IntentPickerPWAPersistence", "1", "intent-picker-pwa-persistence", 1},
{"InteractiveWindowCycleList", "0",
"ash-enable-interactive-window-cycle-list", 2},
{"InteractiveWindowCycleList", "1",
"ash-enable-interactive-window-cycle-list", 1},
{"IsolatePrerenders", "0", "enable-google-srp-isolated-prerenders", 11},
{"IsolatePrerenders", "1", "enable-google-srp-isolated-prerenders", 1},
{"IsolatePrerenders:max_srp_prefetches/-1", "1",
"enable-google-srp-isolated-prerenders", 2},
{"IsolatePrerenders:max_srp_prefetches/0", "1",
"enable-google-srp-isolated-prerenders", 3},
{"IsolatePrerenders:max_srp_prefetches/1", "1",
"enable-google-srp-isolated-prerenders", 4},
{"IsolatePrerenders:max_srp_prefetches/10", "1",
"enable-google-srp-isolated-prerenders", 9},
{"IsolatePrerenders:max_srp_prefetches/15", "1",
"enable-google-srp-isolated-prerenders", 10},
{"IsolatePrerenders:max_srp_prefetches/2", "1",
"enable-google-srp-isolated-prerenders", 5},
{"IsolatePrerenders:max_srp_prefetches/3", "1",
"enable-google-srp-isolated-prerenders", 6},
{"IsolatePrerenders:max_srp_prefetches/4", "1",
"enable-google-srp-isolated-prerenders", 7},
{"IsolatePrerenders:max_srp_prefetches/5", "1",
"enable-google-srp-isolated-prerenders", 8},
{"IsolatePrerendersMustProbeOrigin", "0",
"enable-google-srp-isolated-prerender-probing", 2},
{"IsolatePrerendersMustProbeOrigin", "1",
"enable-google-srp-isolated-prerender-probing", 1},
{"KaleidoscopeModule", "0", "kaleidoscope-ntp-module", 2},
{"KaleidoscopeModule", "1", "kaleidoscope-ntp-module", 1},
{"KerberosSettingsSection", "0", "enable-kerberos-settings-section", 2},
{"KerberosSettingsSection", "1", "enable-kerberos-settings-section", 1},
{"KernelnextVMs", "0", "enable-experimental-kernel-vm-support", 2},
{"KernelnextVMs", "1", "enable-experimental-kernel-vm-support", 1},
{"KeyboardBasedDisplayArrangementInSettings", "0",
"keyboard-based-display-arrangement-in-settings", 2},
{"KeyboardBasedDisplayArrangementInSettings", "1",
"keyboard-based-display-arrangement-in-settings", 1},
{"LacrosSupport", "0", "lacros-support", 2},
{"LacrosSupport", "1", "lacros-support", 1},
{"LanguageSettingsUpdate", "0", "enable-cros-language-settings-update", 2},
{"LanguageSettingsUpdate", "1", "enable-cros-language-settings-update", 1},
{"LayoutNGTable", "0", "enable-layout-ng", 2},
{"LayoutNGTable", "0", "enable-table-ng", 2},
{"LayoutNGTable", "1", "enable-layout-ng", 1},
{"LayoutNGTable", "1", "enable-table-ng", 1},
{"LazyFrameLoading", "0", "enable-lazy-frame-loading", 3},
{"LazyFrameLoading", "1", "enable-lazy-frame-loading", 1},
{"LazyFrameLoading:automatic-lazy-load-frames-enabled/true/"
"restrict-lazy-load-frames-to-data-saver-only/false",
"1", "enable-lazy-frame-loading", 2},
{"LazyImageLoading", "0", "enable-lazy-image-loading", 3},
{"LazyImageLoading", "1", "enable-lazy-image-loading", 1},
{"LazyImageLoading:automatic-lazy-load-images-enabled/true/"
"restrict-lazy-load-images-to-data-saver-only/false",
"1", "enable-lazy-image-loading", 2},
{"LegacyTLSEnforced", "0", "legacy-tls-enforced", 2},
{"LegacyTLSEnforced", "1", "legacy-tls-enforced", 1},
{"LegacyTLSWarnings", "0", "show-legacy-tls-warnings", 2},
{"LegacyTLSWarnings", "1", "show-legacy-tls-warnings", 1},
{"LevelDBPerformRewrite", "0", "rewrite-leveldb-on-deletion", 2},
{"LevelDBPerformRewrite", "1", "rewrite-leveldb-on-deletion", 1},
{"LimitAltTabToActiveDesk", "0", "ash-limit-alt-tab-to-active-desk", 2},
{"LimitAltTabToActiveDesk", "1", "ash-limit-alt-tab-to-active-desk", 1},
{"ListAllDisplayModes", "0", "list-all-display-modes", 2},
{"ListAllDisplayModes", "1", "list-all-display-modes", 1},
{"LiteVideo", "0", "enable-lite-video", 2},
{"LiteVideo", "1", "enable-lite-video", 1},
{"LiveCaption", "0", "enable-accessibility-live-caption", 2},
{"LiveCaption", "1", "enable-accessibility-live-caption", 1},
{"LockScreenMediaControls", "0", "lock-screen-media-controls", 2},
{"LockScreenMediaControls", "1", "lock-screen-media-controls", 1},
{"LockScreenNotifications", "0", "enable-lock-screen-notification", 2},
{"LockScreenNotifications", "1", "enable-lock-screen-notification", 1},
{"LoginDetection", "0", "enable-login-detection", 2},
{"LoginDetection", "1", "enable-login-detection", 1},
{"MBIMode", "0", "mbi-mode", 5},
{"MBIMode", "1", "mbi-mode", 1},
{"MBIMode:mode/legacy", "1", "mbi-mode", 2},
{"MBIMode:mode/per_render_process_host", "1", "mbi-mode", 3},
{"MBIMode:mode/per_site_instance", "1", "mbi-mode", 4},
{"MagnifierNewFocusFollowing", "0", "enable-magnifier-new-focus-following",
2},
{"MagnifierNewFocusFollowing", "1", "enable-magnifier-new-focus-following",
1},
{"MediaApp", "0", "media-app", 2},
{"MediaApp", "1", "media-app", 1},
{"MediaAppAnnotation", "0", "media-app-annotation", 2},
{"MediaAppAnnotation", "1", "media-app-annotation", 1},
{"MediaAppPdfInInk", "0", "media-app-pdf-in-ink", 2},
{"MediaAppPdfInInk", "1", "media-app-pdf-in-ink", 1},
{"MediaFeeds", "0", "enable-media-feeds", 2},
{"MediaFeeds", "1", "enable-media-feeds", 1},
{"MediaFeedsBackgroundFetching", "0", "enable-media-feeds-background-fetch",
2},
{"MediaFeedsBackgroundFetching", "1", "enable-media-feeds-background-fetch",
1},
{"MediaNotificationsCounter", "0", "media-notifications-counter", 2},
{"MediaNotificationsCounter", "1", "media-notifications-counter", 1},
{"MediaSessionNotification", "0", "enable-media-session-notifications", 2},
{"MediaSessionNotification", "1", "enable-media-session-notifications", 1},
{"MediaSessionService", "0", "enable-media-session-service", 2},
{"MediaSessionService", "1", "enable-media-session-service", 1},
{"MeteredShowToggle", "0", "show-metered-toggle", 2},
{"MeteredShowToggle", "1", "show-metered-toggle", 1},
{"MigrateDefaultChromeAppToWebAppsGSuite", "0",
"enable-migrate-default-chrome-app-to-web-apps-gsuite", 2},
{"MigrateDefaultChromeAppToWebAppsGSuite", "1",
"enable-migrate-default-chrome-app-to-web-apps-gsuite", 1},
{"MigrateDefaultChromeAppToWebAppsNonGSuite", "0",
"enable-migrate-default-chrome-app-to-web-apps-non-gsuite", 2},
{"MigrateDefaultChromeAppToWebAppsNonGSuite", "1",
"enable-migrate-default-chrome-app-to-web-apps-non-gsuite", 1},
{"MouseSubframeNoImplicitCapture", "0",
"mouse-subframe-no-implicit-capture", 2},
{"MouseSubframeNoImplicitCapture", "1",
"mouse-subframe-no-implicit-capture", 1},
{"MovablePartialScreenshot", "0", "movable-partial-screenshot-region", 2},
{"MovablePartialScreenshot", "1", "movable-partial-screenshot-region", 1},
{"MultilingualTyping", "0", "enable-cros-multilingual-typing", 2},
{"MultilingualTyping", "1", "enable-cros-multilingual-typing", 1},
{"MuteNotificationsDuringScreenShare", "0",
"mute-notifications-during-screen-share", 2},
{"MuteNotificationsDuringScreenShare", "1",
"mute-notifications-during-screen-share", 1},
{"NavigationPredictor", "0", "enable-navigation-predictor", 2},
{"NavigationPredictor", "1", "enable-navigation-predictor", 1},
{"NavigationPredictorRendererWarmup", "0",
"enable-navigation-predictor-renderer-warmup", 2},
{"NavigationPredictorRendererWarmup", "1",
"enable-navigation-predictor-renderer-warmup", 1},
{"NearbySharing", "0", "nearby-sharing", 2},
{"NearbySharing", "1", "nearby-sharing", 1},
{"NearbySharingDeviceContacts", "0", "nearby-sharing-device-contacts", 2},
{"NearbySharingDeviceContacts", "1", "nearby-sharing-device-contacts", 1},
{"NearbySharingWebRtc", "0", "nearby-sharing-webrtc", 2},
{"NearbySharingWebRtc", "1", "nearby-sharing-webrtc", 1},
{"NewDragSpecInLauncher", "0", "enable-launcher-app-paging", 2},
{"NewDragSpecInLauncher", "1", "enable-launcher-app-paging", 1},
{"NewShortcutMapping", "0", "new-shortcut-mapping", 2},
{"NewShortcutMapping", "1", "new-shortcut-mapping", 1},
{"NewTabstripAnimation", "0", "new-tabstrip-animation", 2},
{"NewTabstripAnimation", "1", "new-tabstrip-animation", 1},
{"NotificationScheduleService", "0", "notification-scheduler", 2},
{"NotificationScheduleService", "1", "notification-scheduler", 1},
{"NtpChromeCartModule", "0", "ntp-chrome-cart-module", 2},
{"NtpChromeCartModule", "1", "ntp-chrome-cart-module", 1},
{"NtpDriveModule", "0", "ntp-drive-module", 2},
{"NtpDriveModule", "1", "ntp-drive-module", 1},
{"NtpModules", "0", "ntp-modules", 2},
{"NtpModules", "1", "ntp-modules", 1},
{"NtpRecipeTasksModule", "0", "ntp-recipe-tasks-module", 3},
{"NtpRecipeTasksModule", "1", "ntp-recipe-tasks-module", 1},
{"NtpRecipeTasksModule:NtpStatefulTasksModuleDataParam/fake", "1",
"ntp-recipe-tasks-module", 2},
{"NtpRepeatableQueries", "0", "ntp-repeatable-queries", 4},
{"NtpRepeatableQueries", "1", "ntp-repeatable-queries", 1},
{"NtpRepeatableQueries:NtpRepeatableQueriesInsertPosition/end", "1",
"ntp-repeatable-queries", 3},
{"NtpRepeatableQueries:NtpRepeatableQueriesInsertPosition/start", "1",
"ntp-repeatable-queries", 2},
{"NtpShoppingTasksModule", "0", "ntp-shopping-tasks-module", 3},
{"NtpShoppingTasksModule", "1", "ntp-shopping-tasks-module", 1},
{"NtpShoppingTasksModule:NtpStatefulTasksModuleDataParam/fake", "1",
"ntp-shopping-tasks-module", 2},
{"NtpWebUI", "0", "ntp-webui", 2},
{"NtpWebUI", "1", "ntp-webui", 1},
{"OmniboxBookmarkPaths", "0", "omnibox-bookmark-paths", 7},
{"OmniboxBookmarkPaths", "1", "omnibox-bookmark-paths", 1},
{"OmniboxBookmarkPaths:", "1", "omnibox-bookmark-paths", 2},
{"OmniboxBookmarkPaths:OmniboxBookmarkPathsUiAppendAfterTitle/true", "1",
"omnibox-bookmark-paths", 5},
{"OmniboxBookmarkPaths:OmniboxBookmarkPathsUiDynamicReplaceUrl/true", "1",
"omnibox-bookmark-paths", 6},
{"OmniboxBookmarkPaths:OmniboxBookmarkPathsUiReplaceTitle/true", "1",
"omnibox-bookmark-paths", 3},
{"OmniboxBookmarkPaths:OmniboxBookmarkPathsUiReplaceUrl/true", "1",
"omnibox-bookmark-paths", 4},
{"OmniboxBubbleUrlSuggestions", "0", "omnibox-bubble-url-suggestions", 5},
{"OmniboxBubbleUrlSuggestions", "1", "omnibox-bubble-url-suggestions", 1},
{"OmniboxBubbleUrlSuggestions:OmniboxBubbleUrlSuggestionsAbsoluteGap/200/"
"OmniboxBubbleUrlSuggestionsRelativeGap/1/"
"OmniboxBubbleUrlSuggestionsAbsoluteBuffer/100/"
"OmniboxBubbleUrlSuggestionsRelativeBuffer/1",
"1", "omnibox-bubble-url-suggestions", 2},
{"OmniboxBubbleUrlSuggestions:OmniboxBubbleUrlSuggestionsAbsoluteGap/200/"
"OmniboxBubbleUrlSuggestionsRelativeGap/1/"
"OmniboxBubbleUrlSuggestionsAbsoluteBuffer/200/"
"OmniboxBubbleUrlSuggestionsRelativeBuffer/1",
"1", "omnibox-bubble-url-suggestions", 3},
{"OmniboxBubbleUrlSuggestions:OmniboxBubbleUrlSuggestionsAbsoluteGap/400/"
"OmniboxBubbleUrlSuggestionsRelativeGap/1/"
"OmniboxBubbleUrlSuggestionsAbsoluteBuffer/200/"
"OmniboxBubbleUrlSuggestionsRelativeBuffer/1",
"1", "omnibox-bubble-url-suggestions", 4},
{"OmniboxClobberTriggersContextualWebZeroSuggest", "0",
"omnibox-clobber-triggers-contextual-web-zero-suggest", 7},
{"OmniboxClobberTriggersContextualWebZeroSuggest", "1",
"omnibox-clobber-triggers-contextual-web-zero-suggest", 1},
{"OmniboxClobberTriggersContextualWebZeroSuggest:", "1",
"omnibox-clobber-triggers-contextual-web-zero-suggest", 2},
{"OmniboxClobberTriggersContextualWebZeroSuggest:", "1",
"omnibox-clobber-triggers-contextual-web-zero-suggest", 3},
{"OmniboxClobberTriggersContextualWebZeroSuggest:", "1",
"omnibox-clobber-triggers-contextual-web-zero-suggest", 4},
{"OmniboxClobberTriggersContextualWebZeroSuggest:", "1",
"omnibox-clobber-triggers-contextual-web-zero-suggest", 5},
{"OmniboxClobberTriggersContextualWebZeroSuggest:", "1",
"omnibox-clobber-triggers-contextual-web-zero-suggest", 6},
{"OmniboxDisableCGIParamMatching", "0",
"omnibox-disable-cgi-param-matching", 2},
{"OmniboxDisableCGIParamMatching", "1",
"omnibox-disable-cgi-param-matching", 1},
{"OmniboxDisplayTitleForCurrentUrl", "0",
"omnibox-display-title-for-current-url", 2},
{"OmniboxDisplayTitleForCurrentUrl", "1",
"omnibox-display-title-for-current-url", 1},
{"OmniboxDocumentProvider", "0", "omnibox-drive-suggestions", 6},
{"OmniboxDocumentProvider", "1", "omnibox-drive-suggestions", 1},
{"OmniboxDocumentProvider:DocumentUseServerScore/false/"
"DocumentUseClientScore/true/DocumentCapScorePerRank/false/"
"DocumentBoostOwned/false",
"1", "omnibox-drive-suggestions", 4},
{"OmniboxDocumentProvider:DocumentUseServerScore/true/"
"DocumentUseClientScore/false/DocumentCapScorePerRank/false/"
"DocumentBoostOwned/false",
"1", "omnibox-drive-suggestions", 2},
{"OmniboxDocumentProvider:DocumentUseServerScore/true/"
"DocumentUseClientScore/false/DocumentCapScorePerRank/true/"
"DocumentBoostOwned/true",
"1", "omnibox-drive-suggestions", 3},
{"OmniboxDocumentProvider:DocumentUseServerScore/true/"
"DocumentUseClientScore/true/DocumentCapScorePerRank/false/"
"DocumentBoostOwned/false",
"1", "omnibox-drive-suggestions", 5},
{"OmniboxDynamicMaxAutocomplete", "0", "omnibox-dynamic-max-autocomplete",
8},
{"OmniboxDynamicMaxAutocomplete", "1", "omnibox-dynamic-max-autocomplete",
1},
{"OmniboxDynamicMaxAutocomplete:OmniboxDynamicMaxAutocompleteUrlCutoff/0/"
"OmniboxDynamicMaxAutocompleteIncreasedLimit/10",
"1", "omnibox-dynamic-max-autocomplete", 5},
{"OmniboxDynamicMaxAutocomplete:OmniboxDynamicMaxAutocompleteUrlCutoff/0/"
"OmniboxDynamicMaxAutocompleteIncreasedLimit/9",
"1", "omnibox-dynamic-max-autocomplete", 2},
{"OmniboxDynamicMaxAutocomplete:OmniboxDynamicMaxAutocompleteUrlCutoff/1/"
"OmniboxDynamicMaxAutocompleteIncreasedLimit/10",
"1", "omnibox-dynamic-max-autocomplete", 6},
{"OmniboxDynamicMaxAutocomplete:OmniboxDynamicMaxAutocompleteUrlCutoff/1/"
"OmniboxDynamicMaxAutocompleteIncreasedLimit/9",
"1", "omnibox-dynamic-max-autocomplete", 3},
{"OmniboxDynamicMaxAutocomplete:OmniboxDynamicMaxAutocompleteUrlCutoff/2/"
"OmniboxDynamicMaxAutocompleteIncreasedLimit/10",
"1", "omnibox-dynamic-max-autocomplete", 7},
{"OmniboxDynamicMaxAutocomplete:OmniboxDynamicMaxAutocompleteUrlCutoff/2/"
"OmniboxDynamicMaxAutocompleteIncreasedLimit/9",
"1", "omnibox-dynamic-max-autocomplete", 4},
{"OmniboxExperimentalKeywordMode", "0", "omnibox-experimental-keyword-mode",
2},
{"OmniboxExperimentalKeywordMode", "1", "omnibox-experimental-keyword-mode",
1},
{"OmniboxExperimentalSuggestScoring", "0",
"omnibox-experimental-suggest-scoring", 2},
{"OmniboxExperimentalSuggestScoring", "1",
"omnibox-experimental-suggest-scoring", 1},
{"OmniboxKeywordSearchButton", "0", "omnibox-keyword-search-button", 2},
{"OmniboxKeywordSearchButton", "1", "omnibox-keyword-search-button", 1},
{"OmniboxLocalZeroSuggestFrecencyRanking", "0",
"omnibox-local-zero-suggest-frecency-ranking", 2},
{"OmniboxLocalZeroSuggestFrecencyRanking", "1",
"omnibox-local-zero-suggest-frecency-ranking", 1},
{"OmniboxMaxURLMatches", "0", "omnibox-max-url-matches", 7},
{"OmniboxMaxURLMatches", "1", "omnibox-max-url-matches", 1},
{"OmniboxMaxURLMatches:OmniboxMaxURLMatches/2", "1",
"omnibox-max-url-matches", 2},
{"OmniboxMaxURLMatches:OmniboxMaxURLMatches/3", "1",
"omnibox-max-url-matches", 3},
{"OmniboxMaxURLMatches:OmniboxMaxURLMatches/4", "1",
"omnibox-max-url-matches", 4},
{"OmniboxMaxURLMatches:OmniboxMaxURLMatches/5", "1",
"omnibox-max-url-matches", 5},
{"OmniboxMaxURLMatches:OmniboxMaxURLMatches/6", "1",
"omnibox-max-url-matches", 6},
{"OmniboxMaxZeroSuggestMatches", "0", "omnibox-max-zero-suggest-matches",
13},
{"OmniboxMaxZeroSuggestMatches", "1", "omnibox-max-zero-suggest-matches",
1},
{"OmniboxMaxZeroSuggestMatches:MaxZeroSuggestMatches/10", "1",
"omnibox-max-zero-suggest-matches", 7},
{"OmniboxMaxZeroSuggestMatches:MaxZeroSuggestMatches/11", "1",
"omnibox-max-zero-suggest-matches", 8},
{"OmniboxMaxZeroSuggestMatches:MaxZeroSuggestMatches/12", "1",
"omnibox-max-zero-suggest-matches", 9},
{"OmniboxMaxZeroSuggestMatches:MaxZeroSuggestMatches/13", "1",
"omnibox-max-zero-suggest-matches", 10},
{"OmniboxMaxZeroSuggestMatches:MaxZeroSuggestMatches/14", "1",
"omnibox-max-zero-suggest-matches", 11},
{"OmniboxMaxZeroSuggestMatches:MaxZeroSuggestMatches/15", "1",
"omnibox-max-zero-suggest-matches", 12},
{"OmniboxMaxZeroSuggestMatches:MaxZeroSuggestMatches/5", "1",
"omnibox-max-zero-suggest-matches", 2},
{"OmniboxMaxZeroSuggestMatches:MaxZeroSuggestMatches/6", "1",
"omnibox-max-zero-suggest-matches", 3},
{"OmniboxMaxZeroSuggestMatches:MaxZeroSuggestMatches/7", "1",
"omnibox-max-zero-suggest-matches", 4},
{"OmniboxMaxZeroSuggestMatches:MaxZeroSuggestMatches/8", "1",
"omnibox-max-zero-suggest-matches", 5},
{"OmniboxMaxZeroSuggestMatches:MaxZeroSuggestMatches/9", "1",
"omnibox-max-zero-suggest-matches", 6},
{"OmniboxOnDeviceHeadProviderIncognito", "0",
"omnibox-on-device-head-suggestions-incognito", 2},
{"OmniboxOnDeviceHeadProviderIncognito", "1",
"omnibox-on-device-head-suggestions-incognito", 1},
{"OmniboxOnDeviceHeadProviderNonIncognito", "0",
"omnibox-on-device-head-suggestions-non-incognito", 7},
{"OmniboxOnDeviceHeadProviderNonIncognito", "1",
"omnibox-on-device-head-suggestions-non-incognito", 1},
{"OmniboxOnDeviceHeadProviderNonIncognito:"
"DelayOnDeviceHeadSuggestRequestMs/100",
"1", "omnibox-on-device-head-suggestions-non-incognito", 3},
{"OmniboxOnDeviceHeadProviderNonIncognito:"
"DelayOnDeviceHeadSuggestRequestMs/100/"
"OnDeviceSuggestMaxScoreForNonUrlInput/1000/"
"DemoteOnDeviceSearchSuggestionsMode/decrease-relevances",
"1", "omnibox-on-device-head-suggestions-non-incognito", 4},
{"OmniboxOnDeviceHeadProviderNonIncognito:"
"DelayOnDeviceHeadSuggestRequestMs/200",
"1", "omnibox-on-device-head-suggestions-non-incognito", 5},
{"OmniboxOnDeviceHeadProviderNonIncognito:"
"DelayOnDeviceHeadSuggestRequestMs/200/"
"OnDeviceSuggestMaxScoreForNonUrlInput/1000/"
"DemoteOnDeviceSearchSuggestionsMode/decrease-relevances",
"1", "omnibox-on-device-head-suggestions-non-incognito", 6},
{"OmniboxOnDeviceHeadProviderNonIncognito:"
"OnDeviceSuggestMaxScoreForNonUrlInput/1000/"
"DemoteOnDeviceSearchSuggestionsMode/decrease-relevances",
"1", "omnibox-on-device-head-suggestions-non-incognito", 2},
{"OmniboxOnFocusSuggestionsContextualWeb", "0",
"omnibox-on-focus-suggestions-contextual-web", 7},
{"OmniboxOnFocusSuggestionsContextualWeb", "1",
"omnibox-on-focus-suggestions-contextual-web", 1},
{"OmniboxOnFocusSuggestionsContextualWeb:", "1",
"omnibox-on-focus-suggestions-contextual-web", 2},
{"OmniboxOnFocusSuggestionsContextualWeb:", "1",
"omnibox-on-focus-suggestions-contextual-web", 3},
{"OmniboxOnFocusSuggestionsContextualWeb:", "1",
"omnibox-on-focus-suggestions-contextual-web", 4},
{"OmniboxOnFocusSuggestionsContextualWeb:", "1",
"omnibox-on-focus-suggestions-contextual-web", 5},
{"OmniboxOnFocusSuggestionsContextualWeb:", "1",
"omnibox-on-focus-suggestions-contextual-web", 6},
{"OmniboxPedalSuggestions", "0", "omnibox-pedal-suggestions", 2},
{"OmniboxPedalSuggestions", "1", "omnibox-pedal-suggestions", 1},
{"OmniboxRefinedFocusState", "0", "omnibox-refined-focus-state", 2},
{"OmniboxRefinedFocusState", "1", "omnibox-refined-focus-state", 1},
{"OmniboxRichAutocompletion", "0", "omnibox-rich-autocompletion", 15},
{"OmniboxRichAutocompletion", "0", "omnibox-rich-autocompletion-min-char",
8},
{"OmniboxRichAutocompletion", "0", "omnibox-rich-autocompletion-promising",
6},
{"OmniboxRichAutocompletion", "0",
"omnibox-rich-autocompletion-show-additional-text", 4},
{"OmniboxRichAutocompletion", "0", "omnibox-rich-autocompletion-split", 6},
{"OmniboxRichAutocompletion", "1", "omnibox-rich-autocompletion", 1},
{"OmniboxRichAutocompletion", "1", "omnibox-rich-autocompletion-min-char",
1},
{"OmniboxRichAutocompletion", "1", "omnibox-rich-autocompletion-promising",
1},
{"OmniboxRichAutocompletion", "1",
"omnibox-rich-autocompletion-show-additional-text", 1},
{"OmniboxRichAutocompletion", "1", "omnibox-rich-autocompletion-split", 1},
{"OmniboxRichAutocompletion:", "1",
"omnibox-rich-autocompletion-show-additional-text", 2},
{"OmniboxRichAutocompletion:RichAutocompletionAutocompleteNonPrefixAll/"
"true",
"1", "omnibox-rich-autocompletion", 8},
{"OmniboxRichAutocompletion:RichAutocompletionAutocompleteNonPrefixAll/"
"true/RichAutocompletionShowTitles/true/"
"RichAutocompletionAutocompleteTitles/true/"
"RichAutocompletionTwoLineOmnibox/true",
"1", "omnibox-rich-autocompletion", 14},
{"OmniboxRichAutocompletion:"
"RichAutocompletionAutocompleteShowAdditionalText/false",
"1", "omnibox-rich-autocompletion-show-additional-text", 3},
{"OmniboxRichAutocompletion:RichAutocompletionAutocompleteTitles/true", "1",
"omnibox-rich-autocompletion", 4},
{"OmniboxRichAutocompletion:RichAutocompletionAutocompleteTitles/true/"
"RichAutocompletionAutocompleteNonPrefixAll/true",
"1", "omnibox-rich-autocompletion", 11},
{"OmniboxRichAutocompletion:RichAutocompletionAutocompleteTitles/true/"
"RichAutocompletionAutocompleteNonPrefixAll/true",
"1", "omnibox-rich-autocompletion-promising", 2},
{"OmniboxRichAutocompletion:RichAutocompletionAutocompleteTitles/true/"
"RichAutocompletionAutocompleteNonPrefixAll/true/"
"RichAutocompletionAutocompleteTitlesMinChar/3/"
"RichAutocompletionAutocompleteNonPrefixMinChar/5",
"1", "omnibox-rich-autocompletion-promising", 3},
{"OmniboxRichAutocompletion:RichAutocompletionAutocompleteTitles/true/"
"RichAutocompletionAutocompleteNonPrefixShortcutProvider/true/"
"RichAutocompletionAutocompleteTitlesMinChar/3/"
"RichAutocompletionAutocompleteNonPrefixMinChar/5",
"1", "omnibox-rich-autocompletion-promising", 4},
{"OmniboxRichAutocompletion:RichAutocompletionAutocompleteTitles/true/"
"RichAutocompletionAutocompleteTitlesMinChar/3",
"1", "omnibox-rich-autocompletion-promising", 5},
{"OmniboxRichAutocompletion:RichAutocompletionAutocompleteTitlesMinChar/0/"
"RichAutocompletionAutocompleteNonPrefixMinChar/0",
"1", "omnibox-rich-autocompletion-min-char", 2},
{"OmniboxRichAutocompletion:RichAutocompletionAutocompleteTitlesMinChar/0/"
"RichAutocompletionAutocompleteNonPrefixMinChar/3",
"1", "omnibox-rich-autocompletion-min-char", 3},
{"OmniboxRichAutocompletion:RichAutocompletionAutocompleteTitlesMinChar/0/"
"RichAutocompletionAutocompleteNonPrefixMinChar/5",
"1", "omnibox-rich-autocompletion-min-char", 4},
{"OmniboxRichAutocompletion:RichAutocompletionAutocompleteTitlesMinChar/3/"
"RichAutocompletionAutocompleteNonPrefixMinChar/3",
"1", "omnibox-rich-autocompletion-min-char", 5},
{"OmniboxRichAutocompletion:RichAutocompletionAutocompleteTitlesMinChar/3/"
"RichAutocompletionAutocompleteNonPrefixMinChar/5",
"1", "omnibox-rich-autocompletion-min-char", 6},
{"OmniboxRichAutocompletion:RichAutocompletionAutocompleteTitlesMinChar/5/"
"RichAutocompletionAutocompleteNonPrefixMinChar/5",
"1", "omnibox-rich-autocompletion-min-char", 7},
{"OmniboxRichAutocompletion:RichAutocompletionShowTitles/true", "1",
"omnibox-rich-autocompletion", 2},
{"OmniboxRichAutocompletion:RichAutocompletionShowTitles/true/"
"RichAutocompletionAutocompleteNonPrefixAll/true",
"1", "omnibox-rich-autocompletion", 9},
{"OmniboxRichAutocompletion:RichAutocompletionShowTitles/true/"
"RichAutocompletionAutocompleteTitles/true",
"1", "omnibox-rich-autocompletion", 5},
{"OmniboxRichAutocompletion:RichAutocompletionShowTitles/true/"
"RichAutocompletionAutocompleteTitles/true/"
"RichAutocompletionAutocompleteNonPrefixAll/true",
"1", "omnibox-rich-autocompletion", 12},
{"OmniboxRichAutocompletion:RichAutocompletionShowTitles/true/"
"RichAutocompletionAutocompleteTitles/true/"
"RichAutocompletionTwoLineOmnibox/true",
"1", "omnibox-rich-autocompletion", 7},
{"OmniboxRichAutocompletion:RichAutocompletionShowTitles/true/"
"RichAutocompletionTwoLineOmnibox/true",
"1", "omnibox-rich-autocompletion", 3},
{"OmniboxRichAutocompletion:RichAutocompletionShowTitles/true/"
"RichAutocompletionTwoLineOmnibox/true/"
"RichAutocompletionAutocompleteNonPrefixAll/true",
"1", "omnibox-rich-autocompletion", 10},
{"OmniboxRichAutocompletion:RichAutocompletionSplitTitleCompletion/true/"
"RichAutocompletionSplitCompletionMinChar/3",
"1", "omnibox-rich-autocompletion-split", 5},
{"OmniboxRichAutocompletion:RichAutocompletionSplitTitleCompletion/true/"
"RichAutocompletionSplitCompletionMinChar/5",
"1", "omnibox-rich-autocompletion-split", 4},
{"OmniboxRichAutocompletion:RichAutocompletionSplitTitleCompletion/true/"
"RichAutocompletionSplitUrlCompletion/true/"
"RichAutocompletionSplitCompletionMinChar/3",
"1", "omnibox-rich-autocompletion-split", 3},
{"OmniboxRichAutocompletion:RichAutocompletionSplitTitleCompletion/true/"
"RichAutocompletionSplitUrlCompletion/true/"
"RichAutocompletionSplitCompletionMinChar/5",
"1", "omnibox-rich-autocompletion-split", 2},
{"OmniboxRichAutocompletion:RichAutocompletionTwoLineOmnibox/true/"
"RichAutocompletionAutocompleteTitles/true",
"1", "omnibox-rich-autocompletion", 6},
{"OmniboxRichAutocompletion:RichAutocompletionTwoLineOmnibox/true/"
"RichAutocompletionAutocompleteTitles/true/"
"RichAutocompletionAutocompleteNonPrefixAll/true",
"1", "omnibox-rich-autocompletion", 13},
{"OmniboxShortBookmarkSuggestions", "0",
"omnibox-short-bookmark-suggestions", 2},
{"OmniboxShortBookmarkSuggestions", "1",
"omnibox-short-bookmark-suggestions", 1},
{"OmniboxSpeculativeServiceWorkerStartOnQueryInput", "0",
"enable-speculative-service-worker-start-on-query-input", 2},
{"OmniboxSpeculativeServiceWorkerStartOnQueryInput", "1",
"enable-speculative-service-worker-start-on-query-input", 1},
{"OmniboxSuggestionButtonRow", "0", "omnibox-suggestion-button-row", 2},
{"OmniboxSuggestionButtonRow", "1", "omnibox-suggestion-button-row", 1},
{"OmniboxTabSwitchSuggestions", "0", "omnibox-tab-switch-suggestions", 2},
{"OmniboxTabSwitchSuggestions", "1", "omnibox-tab-switch-suggestions", 1},
{"OmniboxTrendingZeroPrefixSuggestionsOnNTP", "0",
"omnibox-trending-zero-prefix-suggestions-on-ntp", 2},
{"OmniboxTrendingZeroPrefixSuggestionsOnNTP", "1",
"omnibox-trending-zero-prefix-suggestions-on-ntp", 1},
{"OmniboxUIExperimentElideToRegistrableDomain", "0",
"omnibox-ui-sometimes-elide-to-registrable-domain", 2},
{"OmniboxUIExperimentElideToRegistrableDomain", "1",
"omnibox-ui-sometimes-elide-to-registrable-domain", 1},
{"OmniboxUIExperimentHideSteadyStateUrlPathQueryAndRefOnInteraction", "0",
"omnibox-ui-hide-steady-state-url-path-query-and-ref-on-interaction", 2},
{"OmniboxUIExperimentHideSteadyStateUrlPathQueryAndRefOnInteraction", "1",
"omnibox-ui-hide-steady-state-url-path-query-and-ref-on-interaction", 1},
{"OmniboxUIExperimentMaxAutocompleteMatches", "0",
"omnibox-ui-max-autocomplete-matches", 11},
{"OmniboxUIExperimentMaxAutocompleteMatches", "1",
"omnibox-ui-max-autocomplete-matches", 1},
{"OmniboxUIExperimentMaxAutocompleteMatches:UIMaxAutocompleteMatches/10",
"1", "omnibox-ui-max-autocomplete-matches", 9},
{"OmniboxUIExperimentMaxAutocompleteMatches:UIMaxAutocompleteMatches/12",
"1", "omnibox-ui-max-autocomplete-matches", 10},
{"OmniboxUIExperimentMaxAutocompleteMatches:UIMaxAutocompleteMatches/3",
"1", "omnibox-ui-max-autocomplete-matches", 2},
{"OmniboxUIExperimentMaxAutocompleteMatches:UIMaxAutocompleteMatches/4",
"1", "omnibox-ui-max-autocomplete-matches", 3},
{"OmniboxUIExperimentMaxAutocompleteMatches:UIMaxAutocompleteMatches/5",
"1", "omnibox-ui-max-autocomplete-matches", 4},
{"OmniboxUIExperimentMaxAutocompleteMatches:UIMaxAutocompleteMatches/6",
"1", "omnibox-ui-max-autocomplete-matches", 5},
{"OmniboxUIExperimentMaxAutocompleteMatches:UIMaxAutocompleteMatches/7",
"1", "omnibox-ui-max-autocomplete-matches", 6},
{"OmniboxUIExperimentMaxAutocompleteMatches:UIMaxAutocompleteMatches/8",
"1", "omnibox-ui-max-autocomplete-matches", 7},
{"OmniboxUIExperimentMaxAutocompleteMatches:UIMaxAutocompleteMatches/9",
"1", "omnibox-ui-max-autocomplete-matches", 8},
{"OmniboxUIExperimentRevealSteadyStateUrlPathQueryAndRefOnHover", "0",
"omnibox-ui-reveal-steady-state-url-path-query-and-ref-on-hover", 2},
{"OmniboxUIExperimentRevealSteadyStateUrlPathQueryAndRefOnHover", "1",
"omnibox-ui-reveal-steady-state-url-path-query-and-ref-on-hover", 1},
{"OmniboxUIExperimentSwapTitleAndUrl", "0", "omnibox-ui-swap-title-and-url",
2},
{"OmniboxUIExperimentSwapTitleAndUrl", "1", "omnibox-ui-swap-title-and-url",
1},
{"OnDeviceGrammarCheck", "0", "enable-cros-on-device-grammar-check", 2},
{"OnDeviceGrammarCheck", "1", "enable-cros-on-device-grammar-check", 1},
{"OneGoogleBarModalOverlays", "0", "ntp-one-google-bar-modal-overlays", 2},
{"OneGoogleBarModalOverlays", "1", "ntp-one-google-bar-modal-overlays", 1},
{"OopRasterizationDDL", "0", "enable-oop-rasterization-ddl", 2},
{"OopRasterizationDDL", "1", "enable-oop-rasterization-ddl", 1},
{"OsSettingsDeepLinking", "0", "os-settings-deep-linking", 2},
{"OsSettingsDeepLinking", "1", "os-settings-deep-linking", 1},
{"OsSettingsPolymer3", "0", "os-settings-polymer3", 2},
{"OsSettingsPolymer3", "1", "os-settings-polymer3", 1},
{"OverrideLanguagePrefsForHrefTranslate", "0",
"override-language-prefs-for-href-translate", 3},
{"OverrideLanguagePrefsForHrefTranslate", "1",
"override-language-prefs-for-href-translate", 1},
{"OverrideLanguagePrefsForHrefTranslate:force-auto-translate/true", "1",
"override-language-prefs-for-href-translate", 2},
{"OverrideSitePrefsForHrefTranslate", "0",
"override-site-prefs-for-href-translate", 3},
{"OverrideSitePrefsForHrefTranslate", "1",
"override-site-prefs-for-href-translate", 1},
{"OverrideSitePrefsForHrefTranslate:force-auto-translate/true", "1",
"override-site-prefs-for-href-translate", 2},
{"PDFViewerUpdate", "0", "pdf-viewer-update", 2},
{"PDFViewerUpdate", "1", "pdf-viewer-update", 1},
{"ParallelDownloading", "0", "enable-parallel-downloading", 2},
{"ParallelDownloading", "1", "enable-parallel-downloading", 1},
{"PasswordImport", "0", "PasswordImport", 2},
{"PasswordImport", "1", "PasswordImport", 1},
{"PasswordsWeaknessCheck", "0", "passwords-weakness-check", 2},
{"PasswordsWeaknessCheck", "1", "passwords-weakness-check", 1},
{"PdfViewerPresentationMode", "0", "pdf-viewer-presentation-mode", 2},
{"PdfViewerPresentationMode", "1", "pdf-viewer-presentation-mode", 1},
{"PdfXfaSupport", "0", "pdf-xfa-forms", 2},
{"PdfXfaSupport", "1", "pdf-xfa-forms", 1},
{"PerDeskShelf", "0", "ash-limit-shelf-items-to-active-desk", 2},
{"PerDeskShelf", "1", "ash-limit-shelf-items-to-active-desk", 1},
{"PercentBasedScrolling", "0", "percent-based-scrolling", 2},
{"PercentBasedScrolling", "1", "percent-based-scrolling", 1},
{"PermissionChip", "0", "permission-chip", 2},
{"PermissionChip", "1", "permission-chip", 1},
{"PermissionPredictions", "0", "permission-predictions", 2},
{"PermissionPredictions", "1", "permission-predictions", 1},
{"PhoneHub", "0", "enable-phone-hub", 2},
{"PhoneHub", "1", "enable-phone-hub", 1},
{"PhoneHubUseBle", "0", "enable-phone-hub-use-ble", 2},
{"PhoneHubUseBle", "1", "enable-phone-hub-use-ble", 1},
{"PipRoundedCorners", "0", "ash-enable-pip-rounded-corners", 2},
{"PipRoundedCorners", "1", "ash-enable-pip-rounded-corners", 1},
{"PluginVmShowCameraPermissions", "0", "pluginvm-show-camera-permissions",
2},
{"PluginVmShowCameraPermissions", "1", "pluginvm-show-camera-permissions",
1},
{"PluginVmShowMicrophonePermissions", "0",
"pluginvm-show-microphone-permissions", 2},
{"PluginVmShowMicrophonePermissions", "1",
"pluginvm-show-microphone-permissions", 1},
{"PointerLockOptions", "0", "enable-pointer-lock-options", 2},
{"PointerLockOptions", "1", "enable-pointer-lock-options", 1},
{"Portals", "0", "enable-portals", 2},
{"Portals", "1", "enable-portals", 1},
{"PortalsCrossOrigin", "0", "enable-portals-cross-origin", 2},
{"PortalsCrossOrigin", "1", "enable-portals-cross-origin", 1},
{"PostQuantumCECPQ2", "0", "post-quantum-cecpq2", 2},
{"PostQuantumCECPQ2", "1", "post-quantum-cecpq2", 1},
{"PreconnectToSearch", "0", "enable-preconnect-to-search", 2},
{"PreconnectToSearch", "1", "enable-preconnect-to-search", 1},
{"PreferConstantFrameRate", "0", "prefer-constant-frame-rate", 2},
{"PreferConstantFrameRate", "1", "prefer-constant-frame-rate", 1},
{"Prerender2", "0", "enable-prerender2", 3},
{"Prerender2", "1", "enable-prerender2", 1},
{"Prerender2:activation/disabled", "1", "enable-prerender2", 2},
{"Previews", "0", "allow-previews", 2},
{"Previews", "1", "allow-previews", 1},
{"PreviewsCoinFlipHoldback_UKMOnly", "0", "enable-previews-coin-flip", 2},
{"PreviewsCoinFlipHoldback_UKMOnly", "1", "enable-previews-coin-flip", 1},
{"PrintJobManagementApp", "0", "print-job-management-app", 2},
{"PrintJobManagementApp", "1", "print-job-management-app", 1},
{"PrintSaveToDrive", "0", "print-save-to-drive", 2},
{"PrintSaveToDrive", "1", "print-save-to-drive", 1},
{"PrintServerScaling", "0", "print-server-scaling", 2},
{"PrintServerScaling", "1", "print-server-scaling", 1},
{"PrinterStatus", "0", "printer-status", 2},
{"PrinterStatus", "1", "printer-status", 1},
{"PrinterStatusDialog", "0", "printer-status-dialog", 2},
{"PrinterStatusDialog", "1", "printer-status-dialog", 1},
{"PrivacyAdvisor", "0", "privacy-advisor", 2},
{"PrivacyAdvisor", "1", "privacy-advisor", 1},
{"PrivacySandboxSettings", "0", "privacy-sandbox-settings", 2},
{"PrivacySandboxSettings", "1", "privacy-sandbox-settings", 1},
{"PrivacySettingsRedesign", "0", "privacy-settings-redesign", 2},
{"PrivacySettingsRedesign", "1", "privacy-settings-redesign", 1},
{"ProminentDarkModeActiveTabTitle", "0",
"prominent-dark-mode-active-tab-title", 2},
{"ProminentDarkModeActiveTabTitle", "1",
"prominent-dark-mode-active-tab-title", 1},
{"PromoBrowserCommands", "0", "promo-browser-commands", 5},
{"PromoBrowserCommands", "1", "promo-browser-commands", 1},
{"PromoBrowserCommands:PromoBrowserCommandIdParam/0", "1",
"promo-browser-commands", 2},
{"PromoBrowserCommands:PromoBrowserCommandIdParam/1", "1",
"promo-browser-commands", 3},
{"PromoBrowserCommands:PromoBrowserCommandIdParam/2", "1",
"promo-browser-commands", 4},
{"QuickAnswers", "0", "enable-quick-answers", 2},
{"QuickAnswers", "1", "enable-quick-answers", 1},
{"QuickAnswersOnEditableText", "0", "enable-quick-answers-on-editable-text",
2},
{"QuickAnswersOnEditableText", "1", "enable-quick-answers-on-editable-text",
1},
{"QuickAnswersTextAnnotator", "0", "enable-quick-answers-text-annotator",
2},
{"QuickAnswersTextAnnotator", "1", "enable-quick-answers-text-annotator",
1},
{"QuickAnswersTranslation", "0", "enable-quick-answers-translation", 2},
{"QuickAnswersTranslation", "1", "enable-quick-answers-translation", 1},
{"QuickAnswersTranslationCloudAPI", "0",
"enable-quick-answers-translation-cloud-api", 2},
{"QuickAnswersTranslationCloudAPI", "1",
"enable-quick-answers-translation-cloud-api", 1},
{"QuietNotificationPrompts", "0", "quiet-notification-prompts", 3},
{"QuietNotificationPrompts", "1", "quiet-notification-prompts", 1},
{"QuietNotificationPrompts:enable_adaptive_activation/true/"
"enable_abusive_request_triggering/true/enable_abusive_request_warning/"
"true/enable_crowd_deny_triggering/true/crowd_deny_hold_back_chance/0",
"1", "quiet-notification-prompts", 2},
{"RawClipboard", "0", "raw-clipboard", 2},
{"RawClipboard", "1", "raw-clipboard", 1},
{"ReadLater", "0", "read-later", 2},
{"ReadLater", "1", "read-later", 1},
{"ReaderMode", "0", "enable-reader-mode", 3},
{"ReaderMode", "1", "enable-reader-mode", 1},
{"ReaderMode:discoverability/offer-in-settings", "1", "enable-reader-mode",
2},
{"RecordWebAppDebugInfo", "0", "record-web-app-debug-info", 2},
{"RecordWebAppDebugInfo", "1", "record-web-app-debug-info", 1},
{"ReduceDisplayNotifications", "0", "reduce-display-notifications", 2},
{"ReduceDisplayNotifications", "1", "reduce-display-notifications", 1},
{"ReleaseNotesNotification", "0", "release-notes-notification", 2},
{"ReleaseNotesNotification", "1", "release-notes-notification", 1},
{"ReleaseNotesNotificationAllChannels", "0",
"release-notes-notification-all-channels", 2},
{"ReleaseNotesNotificationAllChannels", "1",
"release-notes-notification-all-channels", 1},
{"RemoteCopyImageNotification", "0", "remote-copy-image-notification", 2},
{"RemoteCopyImageNotification", "1", "remote-copy-image-notification", 1},
{"RemoteCopyPersistentNotification", "0",
"remote-copy-persistent-notification", 2},
{"RemoteCopyPersistentNotification", "1",
"remote-copy-persistent-notification", 1},
{"RemoteCopyProgressNotification", "0", "remote-copy-progress-notification",
2},
{"RemoteCopyProgressNotification", "1", "remote-copy-progress-notification",
1},
{"RemoteCopyReceiver", "0", "remote-copy-receiver", 2},
{"RemoteCopyReceiver", "1", "remote-copy-receiver", 1},
{"ResamplingInputEvents", "0", "enable-resampling-input-events", 7},
{"ResamplingInputEvents", "1", "enable-resampling-input-events", 1},
{"ResamplingInputEvents:predictor/kalman", "1",
"enable-resampling-input-events", 3},
{"ResamplingInputEvents:predictor/linear_first", "1",
"enable-resampling-input-events", 4},
{"ResamplingInputEvents:predictor/linear_resampling", "1",
"enable-resampling-input-events", 6},
{"ResamplingInputEvents:predictor/linear_second", "1",
"enable-resampling-input-events", 5},
{"ResamplingInputEvents:predictor/lsq", "1",
"enable-resampling-input-events", 2},
{"ResamplingScrollEvents", "0", "enable-resampling-scroll-events", 7},
{"ResamplingScrollEvents", "1", "enable-resampling-scroll-events", 1},
{"ResamplingScrollEvents:predictor/kalman", "1",
"enable-resampling-scroll-events", 3},
{"ResamplingScrollEvents:predictor/linear_first", "1",
"enable-resampling-scroll-events", 4},
{"ResamplingScrollEvents:predictor/linear_resampling", "1",
"enable-resampling-scroll-events", 6},
{"ResamplingScrollEvents:predictor/linear_second", "1",
"enable-resampling-scroll-events", 5},
{"ResamplingScrollEvents:predictor/lsq", "1",
"enable-resampling-scroll-events", 2},
{"ResamplingScrollEventsExperimentalPrediction", "0",
"enable-resampling-scroll-events-experimental-prediction", 4},
{"ResamplingScrollEventsExperimentalPrediction", "1",
"enable-resampling-scroll-events-experimental-prediction", 1},
{"ResamplingScrollEventsExperimentalPrediction:mode/frames/latency/0%2E5",
"1", "enable-resampling-scroll-events-experimental-prediction", 3},
{"ResamplingScrollEventsExperimentalPrediction:mode/time/latency/3%2E3",
"1", "enable-resampling-scroll-events-experimental-prediction", 2},
{"RestrictGamepadAccess", "0", "restrict-gamepad-access", 2},
{"RestrictGamepadAccess", "1", "restrict-gamepad-access", 1},
{"SCTAuditing", "0", "sct-auditing", 5},
{"SCTAuditing", "1", "sct-auditing", 1},
{"SCTAuditing:sampling_rate/0%2E0", "1", "sct-auditing", 2},
{"SCTAuditing:sampling_rate/0%2E0001", "1", "sct-auditing", 3},
{"SCTAuditing:sampling_rate/0%2E001", "1", "sct-auditing", 4},
{"SafeBrowsingEnhancedProtectionMessageInInterstitials", "0",
"safe-browsing-enhanced-protection-message-in-interstitials", 2},
{"SafeBrowsingEnhancedProtectionMessageInInterstitials", "1",
"safe-browsing-enhanced-protection-message-in-interstitials", 1},
{"SafetyCheckWeakPasswords", "0", "safety-check-weak-passwords", 2},
{"SafetyCheckWeakPasswords", "1", "safety-check-weak-passwords", 1},
{"SafetyTip", "0", "safety-tips", 2},
{"SafetyTip", "1", "safety-tips", 1},
{"SameSiteByDefaultCookies", "0", "same-site-by-default-cookies", 2},
{"SameSiteByDefaultCookies", "1", "same-site-by-default-cookies", 1},
{"SaveEditedPDFForm", "0", "pdf-form-save", 2},
{"SaveEditedPDFForm", "1", "pdf-form-save", 1},
{"ScanningUI", "0", "scanning-ui", 2},
{"ScanningUI", "1", "scanning-ui", 1},
{"SchemefulSameSite", "0", "schemeful-same-site", 2},
{"SchemefulSameSite", "1", "schemeful-same-site", 1},
{"ScrollUnification", "0", "scroll-unification", 2},
{"ScrollUnification", "1", "scroll-unification", 1},
{"ScrollableTabStrip", "0", "scrollable-tabstrip", 2},
{"ScrollableTabStrip", "1", "scrollable-tabstrip", 1},
{"ScrollableTabStripButtons", "0", "scrollable-tabstrip-buttons", 2},
{"ScrollableTabStripButtons", "1", "scrollable-tabstrip-buttons", 1},
{"SecurePaymentConfirmationDebug", "0",
"enable-debug-for-secure-payment-confirmation", 2},
{"SecurePaymentConfirmationDebug", "1",
"enable-debug-for-secure-payment-confirmation", 1},
{"SelectToSpeakNavigationControl", "0",
"select-to-speak-navigation-control", 2},
{"SelectToSpeakNavigationControl", "1",
"select-to-speak-navigation-control", 1},
{"SendTabToSelfWhenSignedIn", "0", "send-tab-to-self-when-signed-in", 2},
{"SendTabToSelfWhenSignedIn", "1", "send-tab-to-self-when-signed-in", 1},
{"SendWebUIJavaScriptErrorReports", "0",
"send-webui-javascript-error-reports", 3},
{"SendWebUIJavaScriptErrorReports", "1",
"send-webui-javascript-error-reports", 1},
{"SendWebUIJavaScriptErrorReports:send_webui_js_errors_to_production/false",
"1", "send-webui-javascript-error-reports", 2},
{"SeparatePointingStickSettings", "0", "separate-pointing-stick-settings",
2},
{"SeparatePointingStickSettings", "1", "separate-pointing-stick-settings",
1},
{"SharedClipboardUI", "0", "shared-clipboard-ui", 2},
{"SharedClipboardUI", "1", "shared-clipboard-ui", 1},
{"Sharesheet", "0", "enable-sharesheet", 2},
{"Sharesheet", "1", "enable-sharesheet", 1},
{"SharesheetContentPreviews", "0", "enable-sharesheet-content-previews", 2},
{"SharesheetContentPreviews", "1", "enable-sharesheet-content-previews", 1},
{"SharingDeviceExpiration", "0", "sharing-device-expiration", 8},
{"SharingDeviceExpiration", "1", "sharing-device-expiration", 1},
{"SharingDeviceExpiration:SharingDeviceExpirationHours/0", "1",
"sharing-device-expiration", 2},
{"SharingDeviceExpiration:SharingDeviceExpirationHours/12", "1",
"sharing-device-expiration", 3},
{"SharingDeviceExpiration:SharingDeviceExpirationHours/24", "1",
"sharing-device-expiration", 4},
{"SharingDeviceExpiration:SharingDeviceExpirationHours/240", "1",
"sharing-device-expiration", 7},
{"SharingDeviceExpiration:SharingDeviceExpirationHours/48", "1",
"sharing-device-expiration", 5},
{"SharingDeviceExpiration:SharingDeviceExpirationHours/96", "1",
"sharing-device-expiration", 6},
{"SharingPreferVapid", "0", "sharing-prefer-vapid", 2},
{"SharingPreferVapid", "1", "sharing-prefer-vapid", 1},
{"SharingQRCodeGenerator", "0", "sharing-qr-code-generator", 2},
{"SharingQRCodeGenerator", "1", "sharing-qr-code-generator", 1},
{"SharingSendViaSync", "0", "sharing-send-via-sync", 2},
{"SharingSendViaSync", "1", "sharing-send-via-sync", 1},
{"ShowBluetoothDebugLogToggle", "0", "show-bluetooth-debug-log-toggle", 2},
{"ShowBluetoothDebugLogToggle", "1", "show-bluetooth-debug-log-toggle", 1},
{"ShowBluetoothDeviceBattery", "0", "show-bluetooth-device-battery", 2},
{"ShowBluetoothDeviceBattery", "1", "show-bluetooth-device-battery", 1},
{"ShutdownSupportForKeepalive", "0", "shutdown-support-for-keepalive", 2},
{"ShutdownSupportForKeepalive", "1", "shutdown-support-for-keepalive", 1},
{"SidePanel", "0", "side-panel", 2},
{"SidePanel", "1", "side-panel", 1},
{"SignedExchangePrefetchCacheForNavigations", "0",
"enable-sxg-prefetch-cache-for-navigations", 2},
{"SignedExchangePrefetchCacheForNavigations", "1",
"enable-sxg-prefetch-cache-for-navigations", 1},
{"SignedExchangeSubresourcePrefetch", "0",
"enable-sxg-subresource-prefetching", 2},
{"SignedExchangeSubresourcePrefetch", "1",
"enable-sxg-subresource-prefetching", 1},
{"SmartDimModelV3", "0", "smart-dim-model-v3", 2},
{"SmartDimModelV3", "1", "smart-dim-model-v3", 1},
{"SmartDimNewMlAgent", "0", "smart-dim-new-ml-agent", 2},
{"SmartDimNewMlAgent", "1", "smart-dim-new-ml-agent", 1},
{"SmbFs", "0", "smbfs-file-shares", 2},
{"SmbFs", "1", "smbfs-file-shares", 1},
{"SpectreVariant2Mitigation", "0", "spectre-v2-mitigation", 2},
{"SpectreVariant2Mitigation", "1", "spectre-v2-mitigation", 1},
{"SplitSettingsSync", "0", "split-settings-sync", 2},
{"SplitSettingsSync", "1", "split-settings-sync", 1},
{"StorageAccessAPI", "0", "storage-access-api", 2},
{"StorageAccessAPI", "1", "storage-access-api", 1},
{"StoragePressureEvent", "0", "enable-storage-pressure-event", 2},
{"StoragePressureEvent", "1", "enable-storage-pressure-event", 1},
{"StrictOriginIsolation", "0", "strict-origin-isolation", 2},
{"StrictOriginIsolation", "1", "strict-origin-isolation", 1},
{"StylusBatteryStatus", "0", "stylus-battery-status", 2},
{"StylusBatteryStatus", "1", "stylus-battery-status", 1},
{"SubresourceRedirect", "0", "enable-subresource-redirect", 4},
{"SubresourceRedirect", "1", "enable-subresource-redirect", 1},
{"SubresourceRedirect:enable_login_robots_based_compression/true/"
"enable_subresource_server_redirect/true/"
"enable_public_image_hints_based_compression/false",
"1", "enable-subresource-redirect", 3},
{"SubresourceRedirect:enable_public_image_hints_based_compression/true/"
"enable_subresource_server_redirect/true/"
"enable_login_robots_based_compression/false",
"1", "enable-subresource-redirect", 2},
{"SuggestedContentToggle", "0", "suggested-content-toggle", 2},
{"SuggestedContentToggle", "1", "suggested-content-toggle", 1},
{"SwapSideVolumeButtonsForOrientation", "0",
"ash-swap-side-volume-buttons-for-orientation", 2},
{"SwapSideVolumeButtonsForOrientation", "1",
"ash-swap-side-volume-buttons-for-orientation", 1},
{"SyncAutofillWalletOfferData", "0", "sync-autofill-wallet-offer-data", 2},
{"SyncAutofillWalletOfferData", "1", "sync-autofill-wallet-offer-data", 1},
{"SyncRequiresPoliciesLoaded", "0", "enable-sync-requires-policies-loaded",
2},
{"SyncRequiresPoliciesLoaded", "1", "enable-sync-requires-policies-loaded",
1},
{"SystemEmojiPicker", "0", "enable-cros-ime-system-emoji-picker", 2},
{"SystemEmojiPicker", "1", "enable-cros-ime-system-emoji-picker", 1},
{"SystemKeyboardLock", "0", "system-keyboard-lock", 2},
{"SystemKeyboardLock", "1", "system-keyboard-lock", 1},
{"SystemLatinPhysicalTyping", "0",
"enable-cros-system-latin-physical-typing", 2},
{"SystemLatinPhysicalTyping", "1",
"enable-cros-system-latin-physical-typing", 1},
{"SystemTrayMicGainSetting", "0", "system-tray-mic-gain", 2},
{"SystemTrayMicGainSetting", "1", "system-tray-mic-gain", 1},
{"TabGroupsAutoCreate", "0", "tab-groups-auto-create", 2},
{"TabGroupsAutoCreate", "1", "tab-groups-auto-create", 1},
{"TabGroupsCollapse", "0", "tab-groups-collapse", 2},
{"TabGroupsCollapse", "1", "tab-groups-collapse", 1},
{"TabGroupsCollapseFreezing", "0", "tab-groups-collapse-freezing", 2},
{"TabGroupsCollapseFreezing", "1", "tab-groups-collapse-freezing", 1},
{"TabGroupsFeedback", "0", "tab-groups-feedback", 2},
{"TabGroupsFeedback", "1", "tab-groups-feedback", 1},
{"TabHoverCardImages", "0", "tab-hover-card-images", 2},
{"TabHoverCardImages", "1", "tab-hover-card-images", 1},
{"TabHoverCards", "0", "tab-hover-cards", 4},
{"TabHoverCards", "1", "tab-hover-cards", 1},
{"TabHoverCards:setting/1", "1", "tab-hover-cards", 2},
{"TabHoverCards:setting/2", "1", "tab-hover-cards", 3},
{"TabOutlinesInLowContrastThemes", "0",
"tab-outlines-in-low-contrast-themes", 2},
{"TabOutlinesInLowContrastThemes", "1",
"tab-outlines-in-low-contrast-themes", 1},
{"TabSearch", "0", "enable-tab-search", 2},
{"TabSearch", "1", "enable-tab-search", 1},
{"TargetEmbeddingLookalikes", "0", "detect-target-embedding-lookalikes", 2},
{"TargetEmbeddingLookalikes", "1", "detect-target-embedding-lookalikes", 1},
{"TemporaryHoldingSpace", "0", "enable-holding-space", 2},
{"TemporaryHoldingSpace", "1", "enable-holding-space", 1},
{"TemporaryHoldingSpacePreviews", "0", "enable-holding-space-previews", 2},
{"TemporaryHoldingSpacePreviews", "1", "enable-holding-space-previews", 1},
{"TextfieldFocusOnTapUp", "0", "textfield-focus-on-tap-up", 2},
{"TextfieldFocusOnTapUp", "1", "textfield-focus-on-tap-up", 1},
{"TouchpadOverscrollHistoryNavigation", "0",
"touchpad-overscroll-history-navigation", 2},
{"TouchpadOverscrollHistoryNavigation", "1",
"touchpad-overscroll-history-navigation", 1},
{"TranslateSubFrames", "0", "enable-translate-sub-frames", 2},
{"TranslateSubFrames", "1", "enable-translate-sub-frames", 1},
{"TreatUnsafeDownloadsAsActive", "0",
"treat-unsafe-downloads-as-active-content", 2},
{"TreatUnsafeDownloadsAsActive", "1",
"treat-unsafe-downloads-as-active-content", 1},
{"TrimOnMemoryPressure", "0", "trim-on-memory-pressure", 2},
{"TrimOnMemoryPressure", "1", "trim-on-memory-pressure", 1},
{"TrustTokens", "0", "trust-tokens", 3},
{"TrustTokens", "1", "trust-tokens", 1},
{"TrustTokens:PlatformProvidedTrustTokenIssuance/true", "1", "trust-tokens",
2},
{"TurnOffStreamingMediaCachingAlways", "0",
"turn-off-streaming-media-caching-always", 2},
{"TurnOffStreamingMediaCachingAlways", "1",
"turn-off-streaming-media-caching-always", 1},
{"TurnOffStreamingMediaCachingOnBattery", "0",
"turn-off-streaming-media-caching-on-battery", 2},
{"TurnOffStreamingMediaCachingOnBattery", "1",
"turn-off-streaming-media-caching-on-battery", 1},
{"UnexpireFlagsM87", "0", "temporary-unexpire-flags-m87", 2},
{"UnexpireFlagsM87", "1", "temporary-unexpire-flags-m87", 1},
{"UnexpireFlagsM88", "0", "temporary-unexpire-flags-m88", 2},
{"UnexpireFlagsM88", "1", "temporary-unexpire-flags-m88", 1},
{"UnifiedMediaView", "0", "files-unified-media-view", 2},
{"UnifiedMediaView", "1", "files-unified-media-view", 1},
{"UpdatedCellularActivationUi", "0", "updated_cellular_activation_ui", 2},
{"UpdatedCellularActivationUi", "1", "updated_cellular_activation_ui", 1},
{"UseChromeOSDirectVideoDecoder", "0", "chromeos-direct-video-decoder", 2},
{"UseChromeOSDirectVideoDecoder", "1", "chromeos-direct-video-decoder", 1},
{"UseDownloadOfflineContentProvider", "0", "enable-new-download-backend",
2},
{"UseDownloadOfflineContentProvider", "1", "enable-new-download-backend",
1},
{"UseHDRTransferFunction", "0", "use-hdr-transfer-function", 2},
{"UseHDRTransferFunction", "1", "use-hdr-transfer-function", 1},
{"UseLookalikesForNavigationSuggestions", "0",
"use-lookalikes-for-navigation-suggestions", 2},
{"UseLookalikesForNavigationSuggestions", "1",
"use-lookalikes-for-navigation-suggestions", 1},
{"UseMediaHistoryStore", "0", "media-history", 2},
{"UseMediaHistoryStore", "1", "media-history", 1},
{"UseMessagesStagingUrl", "0", "use_messages_staging_url", 2},
{"UseMessagesStagingUrl", "1", "use_messages_staging_url", 1},
{"UseOfHashAffiliationFetcher", "0", "use-of-hash-affiliation-fetcher", 2},
{"UseOfHashAffiliationFetcher", "1", "use-of-hash-affiliation-fetcher", 1},
{"UsePreferredIntervalForVideo", "0", "use-preferred-interval-for-video",
2},
{"UsePreferredIntervalForVideo", "1", "use-preferred-interval-for-video",
1},
{"UseSearchClickForRightClick", "0", "use-search-click-for-right-click", 2},
{"UseSearchClickForRightClick", "1", "use-search-click-for-right-click", 1},
{"UseSkiaRenderer", "0", "enable-skia-renderer", 2},
{"UseSkiaRenderer", "1", "enable-skia-renderer", 1},
{"UseWallpaperStagingUrl", "0", "use-wallpaper-staging-url", 2},
{"UseWallpaperStagingUrl", "1", "use-wallpaper-staging-url", 1},
{"UsernameFirstFlow", "0", "username-first-flow", 2},
{"UsernameFirstFlow", "1", "username-first-flow", 1},
{"V8VmFuture", "0", "enable-future-v8-vm-features", 2},
{"V8VmFuture", "1", "enable-future-v8-vm-features", 1},
{"VaapiJpegImageDecodeAcceleration", "0",
"enable-vaapi-jpeg-image-decode-acceleration", 2},
{"VaapiJpegImageDecodeAcceleration", "1",
"enable-vaapi-jpeg-image-decode-acceleration", 1},
{"VaapiWebPImageDecodeAcceleration", "0",
"enable-vaapi-webp-image-decode-acceleration", 2},
{"VaapiWebPImageDecodeAcceleration", "1",
"enable-vaapi-webp-image-decode-acceleration", 1},
{"VideoPlayerJsModules", "0", "video-player-js-modules", 2},
{"VideoPlayerJsModules", "1", "video-player-js-modules", 1},
{"VirtualKeyboardBorderedKey", "0",
"enable-cros-virtual-keyboard-bordered-key", 2},
{"VirtualKeyboardBorderedKey", "1",
"enable-cros-virtual-keyboard-bordered-key", 1},
{"VmCameraMicIndicatorsAndNotifications", "0",
"vm-camera-mic-indicators-and-notifications", 2},
{"VmCameraMicIndicatorsAndNotifications", "1",
"vm-camera-mic-indicators-and-notifications", 1},
{"Vulkan", "0", "enable-vulkan", 2},
{"Vulkan", "1", "enable-vulkan", 1},
{"WebAppEnableLinkCapturing", "0", "enable-desktop-pwas-link-capturing", 2},
{"WebAppEnableLinkCapturing", "1", "enable-desktop-pwas-link-capturing", 1},
{"WebAssemblyBaseline", "0", "enable-webassembly-baseline", 2},
{"WebAssemblyBaseline", "1", "enable-webassembly-baseline", 1},
{"WebAssemblyLazyCompilation", "0", "enable-webassembly-lazy-compilation",
2},
{"WebAssemblyLazyCompilation", "1", "enable-webassembly-lazy-compilation",
1},
{"WebAssemblySimd", "0", "enable-webassembly-simd", 2},
{"WebAssemblySimd", "1", "enable-webassembly-simd", 1},
{"WebAssemblyThreads", "0", "enable-webassembly-threads", 2},
{"WebAssemblyThreads", "1", "enable-webassembly-threads", 1},
{"WebAssemblyTiering", "0", "enable-webassembly-tiering", 2},
{"WebAssemblyTiering", "1", "enable-webassembly-tiering", 1},
{"WebAuthenticationCrosPlatformAuthenticator", "0",
"enable-web-authentication-chromeos-authenticator", 2},
{"WebAuthenticationCrosPlatformAuthenticator", "1",
"enable-web-authentication-chromeos-authenticator", 1},
{"WebAuthenticationPhoneSupport", "0",
"enable-web-authentication-cable-v2-support", 2},
{"WebAuthenticationPhoneSupport", "1",
"enable-web-authentication-cable-v2-support", 1},
{"WebBluetoothNewPermissionsBackend", "0",
"enable-web-bluetooth-new-permissions-backend", 2},
{"WebBluetoothNewPermissionsBackend", "1",
"enable-web-bluetooth-new-permissions-backend", 1},
{"WebBundles", "0", "web-bundles", 2},
{"WebBundles", "1", "web-bundles", 1},
{"WebContentsForceDark", "0", "enable-force-dark", 2},
{"WebContentsForceDark", "1", "enable-force-dark", 1},
{"WebOTPCrossDevice", "0", "sms-receiver-cross-device", 2},
{"WebOTPCrossDevice", "1", "sms-receiver-cross-device", 1},
{"WebPaymentsExperimentalFeatures", "0",
"enable-web-payments-experimental-features", 2},
{"WebPaymentsExperimentalFeatures", "1",
"enable-web-payments-experimental-features", 1},
{"WebPaymentsMinimalUI", "0", "enable-web-payments-minimal-ui", 2},
{"WebPaymentsMinimalUI", "1", "enable-web-payments-minimal-ui", 1},
{"WebRtcEnableCaptureMultiChannelApm", "0",
"enable-webrtc-capture-multi-channel-audio-processing", 2},
{"WebRtcEnableCaptureMultiChannelApm", "1",
"enable-webrtc-capture-multi-channel-audio-processing", 1},
{"WebRtcHideLocalIpsWithMdns", "0",
"enable-webrtc-hide-local-ips-with-mdns", 2},
{"WebRtcHideLocalIpsWithMdns", "1",
"enable-webrtc-hide-local-ips-with-mdns", 1},
{"WebRtcHybridAgc", "0", "enable-webrtc-hybrid-agc", 2},
{"WebRtcHybridAgc", "1", "enable-webrtc-hybrid-agc", 1},
{"WebRtcRemoteEventLog", "0", "enable-webrtc-remote-event-log", 2},
{"WebRtcRemoteEventLog", "1", "enable-webrtc-remote-event-log", 1},
{"WebRtcUseMinMaxVEADimensions", "0",
"enable-webrtc-use-min-max-vea-dimensions", 2},
{"WebRtcUseMinMaxVEADimensions", "1",
"enable-webrtc-use-min-max-vea-dimensions", 1},
{"WebShare", "0", "web-share", 2},
{"WebShare", "1", "web-share", 1},
{"WebUIDarkMode", "0", "webui-dark-mode", 2},
{"WebUIDarkMode", "1", "webui-dark-mode", 1},
{"WebUIOmniboxPopup", "0", "omnibox-webui-omnibox-popup", 2},
{"WebUIOmniboxPopup", "1", "omnibox-webui-omnibox-popup", 1},
{"WebUITabStrip", "0", "webui-tab-strip", 2},
{"WebUITabStrip", "1", "webui-tab-strip", 1},
{"WebUITabStripTabDragIntegration", "0",
"webui-tab-strip-tab-drag-integration", 2},
{"WebUITabStripTabDragIntegration", "1",
"webui-tab-strip-tab-drag-integration", 1},
{"WifiSyncAndroid", "0", "wifi-sync-android", 2},
{"WifiSyncAndroid", "1", "wifi-sync-android", 1},
{"WindowNaming", "0", "window-naming", 2},
{"WindowNaming", "1", "window-naming", 1},
{"disable_idle_sockets_close_on_memory_pressure", "0",
"disable-idle-sockets-close-on-memory-pressure", 2},
{"disable_idle_sockets_close_on_memory_pressure", "1",
"disable-idle-sockets-close-on-memory-pressure", 1},
{"enable-media-internals", "0", "enable-media-internals", 2},
{"enable-media-internals", "1", "enable-media-internals", 1},
{"enable-pixel-canvas-recording", "0", "enable-pixel-canvas-recording", 2},
{"enable-pixel-canvas-recording", "1", "enable-pixel-canvas-recording", 1},
{"fill-on-account-select", "0", "fill-on-account-select", 2},
{"fill-on-account-select", "1", "fill-on-account-select", 1},
{"kAutofillEnableOffersInDownstream", "0",
"autofill-enable-offers-in-downstream", 2},
{"kAutofillEnableOffersInDownstream", "1",
"autofill-enable-offers-in-downstream", 1},
{"stop-in-background", "0", "stop-in-background", 2},
{"stop-in-background", "1", "stop-in-background", 1},
{"use-fake-device-for-media-stream", "0",
"use-fake-device-for-media-stream", 2},
{"use-fake-device-for-media-stream", "1",
"use-fake-device-for-media-stream", 1},
};
// A table listing command line switch (and optional value) with the
// corresponding feature flag representation.
//
// This has been mechanically translated from information dumped from Chrome
// per https://chromium-review.googlesource.com/c/chromium/src/+/2560296 using
// this shell pipeline:
//
// cat /var/log/chrome/chrome |
// fgrep ' maps to switch ' |
// cut -d \ -f 5- |
// awk '$1 !~ /@/ { $1 = $1 "@0" } { print $0 }' |
// awk -F '[@ ]' '{ print "{\"" $6 "\",\"" $7 "\",\"" $1 "\"," $2 "}," }' |
// LC_ALL=C sort
//
// See file comment for more context.
constexpr FeatureMappingEntry kSwitchesMap[] = {
{"allow-insecure-localhost", "", "allow-insecure-localhost", 0},
{"ash-debug-shortcuts", "", "ash-debug-shortcuts", 0},
{"ash-enable-unified-desktop", "", "ash-enable-unified-desktop", 0},
{"ash-touch-hud", "", "show-touch-hud", 0},
{"blink-settings", "disallowFetchForDocWrittenScriptsInMainFrame=false",
"disallow-doc-written-script-loads", 2},
{"blink-settings", "disallowFetchForDocWrittenScriptsInMainFrame=true",
"disallow-doc-written-script-loads", 1},
{"bypass-app-banner-engagement-checks", "",
"bypass-app-banner-engagement-checks", 0},
{"conversions-debug-mode", "", "conversion-measurement-debug-mode", 0},
{"cros-regions-mode", "hide", "cros-regions-mode", 2},
{"cros-regions-mode", "override", "cros-regions-mode", 1},
{"custom-android-messages-domain", "", "use-custom-messages-domain", 0},
{"data-reduction-proxy-experiment", "alt1",
"enable-data-reduction-proxy-server-experiment", 1},
{"data-reduction-proxy-experiment", "alt10",
"enable-data-reduction-proxy-server-experiment", 10},
{"data-reduction-proxy-experiment", "alt2",
"enable-data-reduction-proxy-server-experiment", 2},
{"data-reduction-proxy-experiment", "alt3",
"enable-data-reduction-proxy-server-experiment", 3},
{"data-reduction-proxy-experiment", "alt4",
"enable-data-reduction-proxy-server-experiment", 4},
{"data-reduction-proxy-experiment", "alt5",
"enable-data-reduction-proxy-server-experiment", 5},
{"data-reduction-proxy-experiment", "alt6",
"enable-data-reduction-proxy-server-experiment", 6},
{"data-reduction-proxy-experiment", "alt7",
"enable-data-reduction-proxy-server-experiment", 7},
{"data-reduction-proxy-experiment", "alt8",
"enable-data-reduction-proxy-server-experiment", 8},
{"data-reduction-proxy-experiment", "alt9",
"enable-data-reduction-proxy-server-experiment", 9},
{"debug-packed-apps", "", "debug-packed-apps", 0},
{"desktop-pwas-attention-badging-cros", "api-and-notifications",
"enable-desktop-pwas-attention-badging-cros", 1},
{"desktop-pwas-attention-badging-cros", "api-only",
"enable-desktop-pwas-attention-badging-cros", 2},
{"desktop-pwas-attention-badging-cros", "notifications-only",
"enable-desktop-pwas-attention-badging-cros", 3},
{"disable-accelerated-2d-canvas", "", "disable-accelerated-2d-canvas", 0},
{"disable-accelerated-mjpeg-decode", "", "disable-accelerated-mjpeg-decode",
0},
{"disable-accelerated-video-decode", "", "disable-accelerated-video-decode",
0},
{"disable-accelerated-video-encode", "", "disable-accelerated-video-encode",
0},
{"disable-buffer-bw-compression", "", "disable-buffer-bw-compression", 0},
{"disable-cancel-all-touches", "", "disable-cancel-all-touches", 0},
{"disable-encryption-migration", "", "enable-encryption-migration", 2},
{"disable-explicit-dma-fences", "", "disable-explicit-dma-fences", 0},
{"disable-gpu-rasterization", "", "enable-gpu-rasterization", 2},
{"disable-javascript-harmony-shipping", "",
"disable-javascript-harmony-shipping", 0},
{"disable-oop-rasterization", "", "enable-oop-rasterization", 2},
{"disable-quic", "", "enable-quic", 2},
{"disable-site-isolation-trials", "", "site-isolation-trial-opt-out", 1},
{"disable-smooth-scrolling", "", "smooth-scrolling", 2},
{"disable-threaded-scrolling", "", "disable-threaded-scrolling", 0},
{"disable-touch-drag-drop", "", "enable-touch-drag-drop", 2},
{"disable-video-capture-use-gpu-memory-buffer", "1",
"zero-copy-video-capture", 2},
{"disable-virtual-keyboard", "", "disable-virtual-keyboard", 0},
{"disable-webrtc-hw-decoding", "", "disable-webrtc-hw-decoding", 0},
{"disable-webrtc-hw-encoding", "", "disable-webrtc-hw-encoding", 0},
{"disable-zero-copy", "", "enable-zero-copy", 2},
{"double-buffer-compositing", "", "double-buffer-compositing", 0},
{"enable-accessibility-object-model", "",
"enable-accessibility-object-model", 0},
{"enable-bluetooth-spp-in-serial-api", "",
"enable-bluetooth-spp-in-serial-api", 0},
{"enable-cros-action-recorder", "copy-to-download-dir",
"enable-cros-action-recorder", 3},
{"enable-cros-action-recorder", "disable-and-delete-previous-log",
"enable-cros-action-recorder", 4},
{"enable-cros-action-recorder", "log-with-hash",
"enable-cros-action-recorder", 1},
{"enable-cros-action-recorder", "log-without-hash",
"enable-cros-action-recorder", 2},
{"enable-cros-action-recorder", "structured-metrics-disabled",
"enable-cros-action-recorder", 5},
{"enable-de-jelly", "", "enable-de-jelly", 0},
{"enable-defer-all-script-without-optimization-hints", "",
"enable-defer-all-script-without-optimization-hints", 0},
{"enable-device-discovery-notifications", "",
"device-discovery-notifications", 0},
{"enable-encryption-migration", "", "enable-encryption-migration", 1},
{"enable-experimental-accessibility-chromevox-annotations", "",
"enable-experimental-accessibility-chromevox-annotations", 0},
{"enable-experimental-accessibility-language-detection", "",
"enable-experimental-accessibility-language-detection", 0},
{"enable-experimental-accessibility-language-detection-dynamic", "",
"enable-experimental-accessibility-language-detection-dynamic", 0},
{"enable-experimental-accessibility-switch-access-text", "",
"enable-experimental-accessibility-switch-access-text", 0},
{"enable-experimental-cookie-features", "",
"enable-experimental-cookie-features", 1},
{"enable-experimental-extension-apis", "", "extension-apis", 0},
{"enable-experimental-web-platform-features", "",
"enable-experimental-web-platform-features", 0},
{"enable-experimental-webassembly-features", "",
"enable-experimental-webassembly-features", 0},
{"enable-gpu-rasterization", "", "enable-gpu-rasterization", 1},
{"enable-gpu-service-logging", "", "enable-gpu-service-logging", 0},
{"enable-hardware-overlays", "", "overlay-strategies", 1},
{"enable-hardware-overlays", "single-fullscreen", "overlay-strategies", 2},
{"enable-hardware-overlays", "single-fullscreen,single-on-top",
"overlay-strategies", 3},
{"enable-hardware-overlays", "single-fullscreen,single-on-top,underlay",
"overlay-strategies", 4},
{"enable-nacl", "", "enable-nacl", 0},
{"enable-oop-rasterization", "", "enable-oop-rasterization", 1},
{"enable-quic", "", "enable-quic", 1},
{"enable-search-prefetch-service", "", "search-prefetch", 0},
{"enable-smooth-scrolling", "", "smooth-scrolling", 1},
{"enable-spdy-proxy-auth", "", "enable-save-data", 0},
{"enable-switch-access-point-scanning", "",
"enable-switch-access-point-scanning", 0},
{"enable-touch-calibration-setting", "", "enable-touchscreen-calibration",
0},
{"enable-touch-drag-drop", "", "enable-touch-drag-drop", 1},
{"enable-ui-devtools", "", "enable-ui-devtools", 0},
{"enable-unsafe-fast-js-calls", "", "enable-unsafe-fast-js-calls", 0},
{"enable-unsafe-webgpu", "", "enable-unsafe-webgpu", 0},
{"enable-use-zoom-for-dsf", "false", "enable-use-zoom-for-dsf", 2},
{"enable-use-zoom-for-dsf", "true", "enable-use-zoom-for-dsf", 1},
{"enable-virtual-keyboard", "", "enable-virtual-keyboard", 0},
{"enable-webgl-draft-extensions", "", "enable-webgl-draft-extensions", 0},
{"enable-webrtc-srtp-aes-gcm", "", "enable-webrtc-srtp-aes-gcm", 0},
{"enable-webrtc-stun-origin", "", "enable-webrtc-stun-origin", 0},
{"enable-zero-copy", "", "enable-zero-copy", 1},
{"extension-content-verification", "bootstrap",
"extension-content-verification", 1},
{"extension-content-verification", "enforce",
"extension-content-verification", 2},
{"extension-content-verification", "enforce_strict",
"extension-content-verification", 3},
{"extensions-on-chrome-urls", "", "extensions-on-chrome-urls", 0},
{"force-color-profile", "color-spin-gamma24", "force-color-profile", 3},
{"force-color-profile", "display-p3-d65", "force-color-profile", 2},
{"force-color-profile", "hdr10", "force-color-profile", 5},
{"force-color-profile", "scrgb-linear", "force-color-profile", 4},
{"force-color-profile", "srgb", "force-color-profile", 1},
{"force-effective-connection-type", "2G", "force-effective-connection-type",
5},
{"force-effective-connection-type", "3G", "force-effective-connection-type",
6},
{"force-effective-connection-type", "4G", "force-effective-connection-type",
7},
{"force-effective-connection-type", "Offline",
"force-effective-connection-type", 2},
{"force-effective-connection-type", "Slow-2G",
"force-effective-connection-type", 3},
{"force-effective-connection-type", "Slow-2G-On-Cellular",
"force-effective-connection-type", 4},
{"force-effective-connection-type", "Unknown",
"force-effective-connection-type", 1},
{"force-text-direction", "ltr", "force-text-direction", 1},
{"force-text-direction", "rtl", "force-text-direction", 2},
{"force-ui-direction", "ltr", "force-ui-direction", 1},
{"force-ui-direction", "rtl", "force-ui-direction", 2},
{"frame-throttle-fps", "10", "frame-throttle-fps", 2},
{"frame-throttle-fps", "15", "frame-throttle-fps", 3},
{"frame-throttle-fps", "20", "frame-throttle-fps", 4},
{"frame-throttle-fps", "25", "frame-throttle-fps", 5},
{"frame-throttle-fps", "30", "frame-throttle-fps", 6},
{"frame-throttle-fps", "5", "frame-throttle-fps", 1},
{"ignore-gpu-blocklist", "", "ignore-gpu-blocklist", 0},
{"ignore-previews-blacklist", "", "ignore-previews-blocklist", 0},
{"isolate-origins", "", "isolate-origins", 0},
{"isolated-prerender-nsp-enabled", "",
"enable-google-srp-isolated-prerender-nsp", 0},
{"isolation-by-default", "", "isolation-by-default", 0},
{"javascript-harmony", "", "enable-javascript-harmony", 0},
{"lacros-stability", "less-stable", "lacros-stability", 1},
{"lacros-stability", "more-stable", "lacros-stability", 2},
{"lite-video-default-downlink-bandwidth-kbps", "100",
"lite-video-default-downlink-bandwidth-kbps", 1},
{"lite-video-default-downlink-bandwidth-kbps", "150",
"lite-video-default-downlink-bandwidth-kbps", 2},
{"lite-video-default-downlink-bandwidth-kbps", "200",
"lite-video-default-downlink-bandwidth-kbps", 3},
{"lite-video-default-downlink-bandwidth-kbps", "250",
"lite-video-default-downlink-bandwidth-kbps", 4},
{"lite-video-default-downlink-bandwidth-kbps", "300",
"lite-video-default-downlink-bandwidth-kbps", 5},
{"lite-video-default-downlink-bandwidth-kbps", "350",
"lite-video-default-downlink-bandwidth-kbps", 6},
{"lite-video-default-downlink-bandwidth-kbps", "400",
"lite-video-default-downlink-bandwidth-kbps", 7},
{"lite-video-default-downlink-bandwidth-kbps", "450",
"lite-video-default-downlink-bandwidth-kbps", 8},
{"lite-video-default-downlink-bandwidth-kbps", "500",
"lite-video-default-downlink-bandwidth-kbps", 9},
{"lite-video-default-downlink-bandwidth-kbps", "600",
"lite-video-default-downlink-bandwidth-kbps", 10},
{"lite-video-default-downlink-bandwidth-kbps", "700",
"lite-video-default-downlink-bandwidth-kbps", 11},
{"lite-video-default-downlink-bandwidth-kbps", "800",
"lite-video-default-downlink-bandwidth-kbps", 12},
{"lite-video-default-downlink-bandwidth-kbps", "900",
"lite-video-default-downlink-bandwidth-kbps", 13},
{"lite-video-force-override-decision", "",
"lite-video-force-override-decision", 0},
{"load-media-router-component-extension", "0",
"load-media-router-component-extension", 2},
{"load-media-router-component-extension", "1",
"load-media-router-component-extension", 1},
{"log-net-log", "", "enable-network-logging-to-file", 0},
{"memlog", "all", "memlog", 2},
{"memlog", "all-renderers", "memlog", 5},
{"memlog", "browser", "memlog", 3},
{"memlog", "gpu", "memlog", 4},
{"memlog", "minimal", "memlog", 1},
{"memlog", "renderer-sampling", "memlog", 6},
{"memlog-sampling-rate", "10000", "memlog-sampling-rate", 1},
{"memlog-sampling-rate", "100000", "memlog-sampling-rate", 3},
{"memlog-sampling-rate", "1000000", "memlog-sampling-rate", 5},
{"memlog-sampling-rate", "50000", "memlog-sampling-rate", 2},
{"memlog-sampling-rate", "500000", "memlog-sampling-rate", 4},
{"memlog-sampling-rate", "5000000", "memlog-sampling-rate", 6},
{"memlog-stack-mode", "mixed", "memlog-stack-mode", 4},
{"memlog-stack-mode", "native", "memlog-stack-mode", 1},
{"memlog-stack-mode", "native-with-thread-names", "memlog-stack-mode", 2},
{"memlog-stack-mode", "pseudo", "memlog-stack-mode", 3},
{"new-canvas-2d-api", "", "new-canvas-2d-api", 0},
{"notification-scheduler-immediate-background-task", "",
"notification-scheduler-debug-options", 1},
{"passive-listeners-default", "forcealltrue", "passive-listener-default",
2},
{"passive-listeners-default", "true", "passive-listener-default", 1},
{"pull-to-refresh", "0", "pull-to-refresh", 1},
{"pull-to-refresh", "1", "pull-to-refresh", 2},
{"pull-to-refresh", "2", "pull-to-refresh", 3},
{"scheduler-configuration", "conservative", "scheduler-configuration", 1},
{"scheduler-configuration", "performance", "scheduler-configuration", 2},
{"shelf-hover-previews", "", "shelf-hover-previews", 0},
{"show-autofill-signatures", "", "enable-show-autofill-signatures", 0},
{"show-composited-layer-borders", "", "composited-layer-borders", 0},
{"show-overdraw-feedback", "", "show-overdraw-feedback", 0},
{"show-taps", "", "show-taps", 0},
{"silent-debugger-extension-api", "", "silent-debugger-extension-api", 0},
{"sync-url", "https://chrome-sync.sandbox.google.com/chrome-sync/alpha",
"use-sync-sandbox", 0},
{"tint-composited-content", "", "tint-composited-content", 0},
{"top-chrome-touch-ui", "auto", "top-chrome-touch-ui", 1},
{"top-chrome-touch-ui", "disabled", "top-chrome-touch-ui", 2},
{"top-chrome-touch-ui", "enabled", "top-chrome-touch-ui", 3},
{"touch-selection-strategy", "character", "touch-selection-strategy", 1},
{"touch-selection-strategy", "direction", "touch-selection-strategy", 2},
{"trace-upload-url",
"https://performance-insights.appspot.com/upload?tags=flags,Other",
"trace-upload-url", 1},
{"trace-upload-url",
"https://performance-insights.appspot.com/upload?tags=flags,QA",
"trace-upload-url", 3},
{"trace-upload-url",
"https://performance-insights.appspot.com/upload?tags=flags,TestingTeam",
"trace-upload-url", 4},
{"trace-upload-url",
"https://performance-insights.appspot.com/upload?tags=flags,emloading",
"trace-upload-url", 2},
{"ui-disable-partial-swap", "", "ui-disable-partial-swap", 0},
{"ui-show-composited-layer-borders", "", "ui-show-composited-layer-borders",
4},
{"ui-show-composited-layer-borders", "layer",
"ui-show-composited-layer-borders", 3},
{"ui-show-composited-layer-borders", "renderpass",
"ui-show-composited-layer-borders", 1},
{"ui-show-composited-layer-borders", "surface",
"ui-show-composited-layer-borders", 2},
{"ui-slow-animations", "", "ui-slow-animations", 0},
{"unsafely-treat-insecure-origin-as-secure", "",
"unsafely-treat-insecure-origin-as-secure", 0},
{"use-first-party-set", "", "use-first-party-set", 0},
{"video-capture-use-gpu-memory-buffer", "1", "zero-copy-video-capture", 1},
{"wallet-service-use-sandbox", "0", "wallet-service-use-sandbox", 2},
{"wallet-service-use-sandbox", "1", "wallet-service-use-sandbox", 1},
};
} // namespace login_manager
#endif // LOGIN_MANAGER_FEATURE_FLAGS_TABLES_H_