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

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

Issue 1447813002: Add USB devices to the content settings page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@get_all_objects
Patch Set: Rebased. Created 5 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 unified diff | Download patch
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="cookiesTabLabel"></h3> 7 <h3 i18n-content="cookiesTabLabel"></h3>
8 <div> 8 <div>
9 <div class="radio controlled-setting-with-label"> 9 <div class="radio controlled-setting-with-label">
10 <label> 10 <label>
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 <input type="radio" name="push-messaging" value="block"> 597 <input type="radio" name="push-messaging" value="block">
598 <span i18n-content="pushMessagingBlock"></span> 598 <span i18n-content="pushMessagingBlock"></span>
599 </label> 599 </label>
600 </div> 600 </div>
601 <div class="settings-row"> 601 <div class="settings-row">
602 <button class="exceptions-list-button" contentType="push-messaging" 602 <button class="exceptions-list-button" contentType="push-messaging"
603 i18n-content="manageExceptions"></button> 603 i18n-content="manageExceptions"></button>
604 </div> 604 </div>
605 </div> 605 </div>
606 </section> 606 </section>
607 <!-- USB devices -->
608 <section>
609 <h3 i18n-content="usbDevicesHeader"></h3>
610 <div>
611 <div class="settings-row">
612 <button class="exceptions-list-button" contentType="usb-devices"
613 i18n-content="usbDevicesManage"></button>
614 </div>
615 </div>
616 </section>
607 <!-- Page zoom levels --> 617 <!-- Page zoom levels -->
608 <section id="page-zoom-levels"> 618 <section id="page-zoom-levels">
609 <h3 i18n-content="zoomlevelsHeader"></h3> 619 <h3 i18n-content="zoomlevelsHeader"></h3>
610 <div> 620 <div>
611 <div class="settings-row"> 621 <div class="settings-row">
612 <button class="exceptions-list-button" contentType="zoomlevels" 622 <button class="exceptions-list-button" contentType="zoomlevels"
613 i18n-content="zoomLevelsManage"></button> 623 i18n-content="zoomLevelsManage"></button>
614 </div> 624 </div>
615 </div> 625 </div>
616 </section> 626 </section>
617 </div> 627 </div>
618 <div class="action-area"> 628 <div class="action-area">
619 <div class="button-strip"> 629 <div class="button-strip">
620 <button id="content-settings-overlay-confirm" class="default-button" 630 <button id="content-settings-overlay-confirm" class="default-button"
621 i18n-content="done"> 631 i18n-content="done">
622 </button> 632 </button>
623 </div> 633 </div>
624 </div> 634 </div>
625 </div> 635 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698