Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1869)

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/background/options.html

Issue 2563013003: Support audio ducking and suspension in ChromeVox (Closed)
Patch Set: Support audio ducking and suspension in ChromeVox Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/chromevox/background/options.html
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/background/options.html b/chrome/browser/resources/chromeos/chromevox/chromevox/background/options.html
index 2ab391f24b7fb84416047ba0c5e7ec3c3c69cef2..6ece7f93030b176cc99fa10ddeec9e7fcb697e22 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/background/options.html
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/background/options.html
@@ -34,13 +34,32 @@
</label>
</div>
+ <p class="i18n description" msgid="options_audio_description" id="audioDescription">
+ When playing audio
+ </p>
+
+ <div>
+ <select id="audioStrategy" class="pref" aria-labelledby="audioDescription">
+ <option id="audioNormal" class="i18n" msgid="options_audio_normal">
+ play at normal volume even if ChromeVox is speaking
+ </option>
+ <option id="audioDuck" class="i18n" msgid="options_audio_duck">
+ play at lower volume when ChromeVox is speaking
+ </option>
+ <option id="audioSuspend" class="i18n" msgid="options_audio_suspend">
+ pause playback when ChromeVox is speaking
+ </option>
+ </select>
+ <br><br>
+ </div>
+
<h2 class="i18n" msgid="options_voices">Voices</h2>
<p class="i18n description" msgid="options_voices_description" id="voices_description">
Change the current voice by selecting an option from the list below.
</p>
<div>
- <select class="pref" id="voices" aria-labelledby="voices_description"></select>
+ <select id="voices" aria-labelledby="voices_description"></select>
<br><br>
</div>
@@ -50,11 +69,11 @@
<p class="i18n description" msgid="options_braille_description_6" id="braille_description_6">
Change the current 6 dot braille table by selecting an option from the list below.
</p>
- <select class="pref" id="brailleTable6" aria-labelledby="braille_description_6"></select>
+ <select id="brailleTable6" aria-labelledby="braille_description_6"></select>
<p class="i18n description" msgid="options_braille_description_8" id="braille_description_8">
Change the current 8 dot braille table by selecting an option from the list below.
</p>
- <select class="pref" id="brailleTable8" aria-labelledby="braille_description_8"></select>
+ <select id="brailleTable8" aria-labelledby="braille_description_8"></select>
<button id="brailleTableType"></button>
<div class="option">
<label>

Powered by Google App Engine
This is Rietveld 408576698