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

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

Issue 10826164: Add infobar for PPAPI broker usage. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 4 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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 <div class="radio"> 311 <div class="radio">
312 <label> 312 <label>
313 <input type="radio" name="media-stream" value="block"> 313 <input type="radio" name="media-stream" value="block">
314 <span i18n-content="mediaStreamBlock"></span> 314 <span i18n-content="mediaStreamBlock"></span>
315 </label> 315 </label>
316 </div> 316 </div>
317 <button class="exceptions-list-button" contentType="media-stream" 317 <button class="exceptions-list-button" contentType="media-stream"
318 i18n-content="manage_exceptions"></button> 318 i18n-content="manage_exceptions"></button>
319 </div> 319 </div>
320 </section> 320 </section>
321 <!-- PPAPI broker -->
322 <section>
323 <h3 i18n-content="ppapi_broker_tab_label"></h3>
324 <div>
325 <div class="radio">
326 <label>
327 <input type="radio" name="ppapi-broker" value="allow">
328 <span i18n-content="ppapi_broker_allow"></span>
329 </label>
330 </div>
331 <div class="radio">
332 <label>
333 <input type="radio" name="ppapi-broker" value="ask">
334 <span i18n-content="ppapi_broker_ask"></span>
335 </label>
336 </div>
337 <div class="radio">
338 <label>
339 <input type="radio" name="ppapi-broker" value="block">
340 <span i18n-content="ppapi_broker_block"></span>
341 </label>
342 </div>
343 <button class="exceptions-list-button" contentType="media-stream"
344 i18n-content="manage_exceptions"></button>
345 </div>
346 </section>
321 <section id="media-galleries-section" hidden> 347 <section id="media-galleries-section" hidden>
322 <h3 i18n-content="mediaGalleriesSectionLabel"></h3> 348 <h3 i18n-content="mediaGalleriesSectionLabel"></h3>
323 <div> 349 <div>
324 <button id="manage-galleries-button" 350 <button id="manage-galleries-button"
325 i18n-content="manageGalleriesButton"></button> 351 i18n-content="manageGalleriesButton"></button>
326 </div> 352 </div>
327 </section> 353 </section>
328 </div> 354 </div>
329 <div class="action-area"> 355 <div class="action-area">
330 <div class="button-strip"> 356 <div class="button-strip">
331 <button id="content-settings-overlay-confirm" i18n-content="ok"></button> 357 <button id="content-settings-overlay-confirm" i18n-content="ok"></button>
332 </div> 358 </div>
333 </div> 359 </div>
334 </div> 360 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698