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

Side by Side Diff: chrome/browser/resources/options2/content_settings.html

Issue 10537099: add "always allow" option to the mediastream infobar and allow user to allow/not allow acces to devi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Check the exceptions before the default setting, sites in the exceptions list can access the device… Created 8 years, 6 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <div id="content-settings-page" class="page" hidden> 1 <div id="content-settings-page" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 i18n-content="contentSettingsPage"></h1> 3 <h1 i18n-content="contentSettingsPage"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <!-- Cookie filter tab contents --> 5 <!-- Cookie filter tab contents -->
6 <section> 6 <section>
7 <h3 i18n-content="cookies_tab_label"></h3> 7 <h3 i18n-content="cookies_tab_label"></h3>
8 <div> 8 <div>
9 <div class="radio"> 9 <div class="radio">
10 <label> 10 <label>
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 </div> 289 </div>
290 <div class="checkbox"> 290 <div class="checkbox">
291 <label> 291 <label>
292 <input pref="settings.privacy.drm_enabled" type="checkbox"> 292 <input pref="settings.privacy.drm_enabled" type="checkbox">
293 <span i18n-content="protectedContentEnable"></span> 293 <span i18n-content="protectedContentEnable"></span>
294 </label> 294 </label>
295 </div> 295 </div>
296 </div> 296 </div>
297 </section> 297 </section>
298 </if> 298 </if>
299 <!-- Media Stream capture device filter -->
300 <section>
301 <h3 i18n-content="mediaStreamTabLabel"></h3>
302 <div>
303 <div class="radio">
304 <label>
305 <input type="radio" name="media-stream" value="ask">
306 <span i18n-content="mediaStreamAsk"></span>
307 </label>
308 </div>
309 <div class="radio">
310 <label>
311 <input type="radio" name="media-stream" value="block">
312 <span i18n-content="mediaStreamBlock"></span>
313 </label>
314 </div>
315 <button class="exceptions-list-button" contentType="media-stream"
316 i18n-content="manage_exceptions"></button>
317 </div>
318 </section>
299 </div> 319 </div>
300 <div class="action-area"> 320 <div class="action-area">
301 <div class="button-strip"> 321 <div class="button-strip">
302 <button id="content-settings-overlay-confirm" i18n-content="ok"></button> 322 <button id="content-settings-overlay-confirm" i18n-content="ok"></button>
303 </div> 323 </div>
304 </div> 324 </div>
305 </div> 325 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698