ash-enable-system-sounds is exposed to about:flags.

BUG=322820
TEST=manual tests on Daisy

Review URL: https://codereview.chromium.org/139323002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245256 0039d316-1c4b-4281-b951-d872f2087c98
parent 75003b7e
...@@ -4013,5 +4013,10 @@ Battery full ...@@ -4013,5 +4013,10 @@ Battery full
<message name="IDS_CHARGER_REPLACEMENT_DIALOG_TITLE" desc="Title of the charger replacement UI dialg"> <message name="IDS_CHARGER_REPLACEMENT_DIALOG_TITLE" desc="Title of the charger replacement UI dialg">
Check charger Check charger
</message> </message>
<message name="IDS_FLAGS_ENABLE_SYSTEM_SOUNDS_NAME" desc="Name of the flag to enable system sounds independently from ChromeVox.">
Enable system sounds
</message>
<message name="IDS_FLAGS_ENABLE_SYSTEM_SOUNDS_DESCRIPTION" desc="Description of the flag to enable system sounds independently from ChromeVox.">
System sounds will be played independently from ChromeVox.
</message>
</grit-part> </grit-part>
...@@ -1970,7 +1970,16 @@ const Experiment kExperiments[] = { ...@@ -1970,7 +1970,16 @@ const Experiment kExperiments[] = {
IDS_FLAGS_EMBED_FLASH_FULLSCREEN_DESCRIPTION, IDS_FLAGS_EMBED_FLASH_FULLSCREEN_DESCRIPTION,
kOsDesktop, kOsDesktop,
SINGLE_VALUE_TYPE(switches::kEmbedFlashFullscreen) SINGLE_VALUE_TYPE(switches::kEmbedFlashFullscreen)
},
#if defined(USE_ASH) && defined(OS_CHROMEOS)
{
"enable-system-sounds",
IDS_FLAGS_ENABLE_SYSTEM_SOUNDS_NAME,
IDS_FLAGS_ENABLE_SYSTEM_SOUNDS_DESCRIPTION,
kOsCrOS,
SINGLE_VALUE_TYPE(ash::switches::kAshEnableSystemSounds)
} }
#endif
}; };
const Experiment* experiments = kExperiments; const Experiment* experiments = kExperiments;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment