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

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

Issue 2441843003: Remove fullscreen and mouselock content settings UI. (Closed)
Patch Set: Moved fullscreen / mouselock check earlier. Created 4 years, 1 month 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 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 <!-- Page zoom levels --> 617 <!-- Page zoom levels -->
618 <section id="page-zoom-levels"> 618 <section id="page-zoom-levels">
619 <h3 i18n-content="zoomlevelsHeader"></h3> 619 <h3 i18n-content="zoomlevelsHeader"></h3>
620 <div> 620 <div>
621 <div class="settings-row"> 621 <div class="settings-row">
622 <button class="exceptions-list-button" contentType="zoomlevels" 622 <button class="exceptions-list-button" contentType="zoomlevels"
623 i18n-content="zoomLevelsManage"></button> 623 i18n-content="zoomLevelsManage"></button>
624 </div> 624 </div>
625 </div> 625 </div>
626 </section> 626 </section>
627 <!-- Fullscreen filter -->
628 <!-- TODO(mgiuca): Delete this once per-site data deleted.
629 https://crbug.com/591896 -->
630 <section id="fullscreen-section">
631 <h3 i18n-content="fullscreenTabLabel"></h3>
632 <p i18n-content="fullscreenDeprecated"></p>
633 <div class="settings-row">
634 <button class="exceptions-list-button" contentType="fullscreen"
635 i18n-content="manageExceptions"></button>
636 </div>
637 </section>
638 <!-- Mouse Lock filter -->
639 <!-- TODO(mgiuca): Delete this once per-site data deleted.
640 https://crbug.com/591896 -->
641 <section id="mouselock-section">
642 <h3 i18n-content="mouselockTabLabel"></h3>
643 <p i18n-content="mouselockDeprecated"></p>
644 <div>
645 <div class="settings-row">
646 <button class="exceptions-list-button" contentType="mouselock"
647 i18n-content="manageExceptions"></button>
648 </div>
649 </div>
650 </section>
651 <!-- PDF Plugin filter --> 627 <!-- PDF Plugin filter -->
652 <section id="pdf-section"> 628 <section id="pdf-section">
653 <h3 i18n-content="pdfTabLabel" class="content-settings-header"></h3> 629 <h3 i18n-content="pdfTabLabel" class="content-settings-header"></h3>
654 <div> 630 <div>
655 <div class="checkbox"> 631 <div class="checkbox">
656 <label> 632 <label>
657 <input pref="plugins.always_open_pdf_externally" type="checkbox"> 633 <input pref="plugins.always_open_pdf_externally" type="checkbox">
658 <span> 634 <span>
659 <span i18n-content="pdfEnable"></span> 635 <span i18n-content="pdfEnable"></span>
660 <span class="controlled-setting-indicator" 636 <span class="controlled-setting-indicator"
661 pref="plugins.always_open_pdf_externally"> 637 pref="plugins.always_open_pdf_externally">
662 </span> 638 </span>
663 </span> 639 </span>
664 </label> 640 </label>
665 </div> 641 </div>
666 </div> 642 </div>
667 </section> 643 </section>
668 </div> 644 </div>
669 <div class="action-area"> 645 <div class="action-area">
670 <div class="button-strip"> 646 <div class="button-strip">
671 <button id="content-settings-overlay-confirm" class="default-button" 647 <button id="content-settings-overlay-confirm" class="default-button"
672 i18n-content="done"> 648 i18n-content="done">
673 </button> 649 </button>
674 </div> 650 </div>
675 </div> 651 </div>
676 </div> 652 </div>
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/options/content_settings_exceptions_area.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698