Chromium Code Reviews| Index: chrome/browser/resources/options/content_settings.html |
| diff --git a/chrome/browser/resources/options/content_settings.html b/chrome/browser/resources/options/content_settings.html |
| index 803b8c06dc6f1bdd032ef5e6667a08a9778d48e7..1f3e3953da2a03422f3115db84d91664cce35225 100644 |
| --- a/chrome/browser/resources/options/content_settings.html |
| +++ b/chrome/browser/resources/options/content_settings.html |
| @@ -614,6 +614,35 @@ |
| </div> |
| </div> |
| </section> |
| + <!-- Media autoplay settings --> |
|
msramek
2015/10/28 10:42:50
I'd move this up, just below mic and camera, since
|
| + <section> |
| + <h3 i18n-content="mediaAutoplayHeader"></h3> |
| + <div> |
| + <div class="radio"> |
| + <label> |
| + <input type="radio" name="media-autoplay" value="allow"> |
| + <span i18n-content="mediaAutoplayAllow"></span> |
| + </label> |
| + </div> |
| + <div class="radio"> |
| + <label> |
| + <input type="radio" name="media-autoplay" |
| + value="detect_important_content"> |
| + <span i18n-content="mediaAutoplayDetectImportantContent"></span> |
| + </label> |
| + </div> |
| + <div class="radio"> |
| + <label> |
| + <input type="radio" name="media-autoplay" value="block"> |
| + <span i18n-content="mediaAutoplayBlock"></span> |
| + </label> |
| + </div> |
| + <div class="settings-row"> |
| + <button class="exceptions-list-button" contentType="media-autoplay" |
| + i18n-content="manageExceptions"></button> |
| + </div> |
| + </div> |
| + </section> |
| </div> |
| <div class="action-area"> |
| <div class="button-strip"> |