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

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

Issue 2004353002: Delete unused code for exclusive access permission prompting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fullscreen-mac-remove-window-controller
Patch Set: Remove unused element ids. Created 4 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
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 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 <div> 624 <div>
625 <div class="settings-row"> 625 <div class="settings-row">
626 <button class="exceptions-list-button" contentType="zoomlevels" 626 <button class="exceptions-list-button" contentType="zoomlevels"
627 i18n-content="zoomLevelsManage"></button> 627 i18n-content="zoomLevelsManage"></button>
628 </div> 628 </div>
629 </div> 629 </div>
630 </section> 630 </section>
631 <!-- Fullscreen filter --> 631 <!-- Fullscreen filter -->
632 <section id="fullscreen-section"> 632 <section id="fullscreen-section">
633 <h3 i18n-content="fullscreenTabLabel"></h3> 633 <h3 i18n-content="fullscreenTabLabel"></h3>
634 <p id="fullscreen-deprecated" i18n-content="fullscreenDeprecated"></p> 634 <p i18n-content="fullscreenDeprecated"></p>
635 <div class="settings-row"> 635 <div class="settings-row">
636 <button class="exceptions-list-button" contentType="fullscreen" 636 <button class="exceptions-list-button" contentType="fullscreen"
637 i18n-content="manageExceptions"></button> 637 i18n-content="manageExceptions"></button>
638 </div> 638 </div>
639 </section> 639 </section>
640 <!-- Mouse Lock filter --> 640 <!-- Mouse Lock filter -->
scheib 2016/05/31 18:20:24 Can even more of this HTML be trimmed, since conte
Matt Giuca 2016/06/01 00:54:29 Sadly, they are still used. https://crbug.com/5918
scheib 2016/06/01 01:01:03 Ah, thanks. Please update the issue(or blockers) w
Matt Giuca 2016/06/01 01:11:03 Done.
641 <section id="mouselock-section"> 641 <section id="mouselock-section">
642 <h3 i18n-content="mouselockTabLabel"></h3> 642 <h3 i18n-content="mouselockTabLabel"></h3>
643 <p id="mouselock-deprecated" i18n-content="mouselockDeprecated"></p> 643 <p i18n-content="mouselockDeprecated"></p>
644 <div id="mouselock-global-settings">
645 <div class="radio">
646 <label>
647 <input type="radio" name="mouselock" value="allow">
648 <span>
649 <span i18n-content="mouselockAllow"></span>
650 <span class="controlled-setting-indicator"
651 content-setting="mouselock" value="allow"></span>
652 </span>
653 </label>
654 </div>
655 <div class="radio">
656 <label>
657 <input type="radio" name="mouselock" value="ask">
658 <span>
659 <span i18n-content="mouselockAsk"></span>
660 <span class="controlled-setting-indicator"
661 content-setting="mouselock" value="ask"></span>
662 </span>
663 </label>
664 </div>
665 <div class="radio">
666 <label>
667 <input type="radio" name="mouselock" value="block">
668 <span>
669 <span i18n-content="mouselockBlock"></span>
670 <span class="controlled-setting-indicator"
671 content-setting="mouselock" value="block"></span>
672 </span>
673 </label>
674 </div>
675 </div>
676 <div> 644 <div>
677 <div class="settings-row"> 645 <div class="settings-row">
678 <button class="exceptions-list-button" contentType="mouselock" 646 <button class="exceptions-list-button" contentType="mouselock"
679 i18n-content="manageExceptions"></button> 647 i18n-content="manageExceptions"></button>
680 </div> 648 </div>
681 </div> 649 </div>
682 </section> 650 </section>
683 </div> 651 </div>
684 <div class="action-area"> 652 <div class="action-area">
685 <div class="button-strip"> 653 <div class="button-strip">
686 <button id="content-settings-overlay-confirm" class="default-button" 654 <button id="content-settings-overlay-confirm" class="default-button"
687 i18n-content="done"> 655 i18n-content="done">
688 </button> 656 </button>
689 </div> 657 </div>
690 </div> 658 </div>
691 </div> 659 </div>
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/options/content_settings.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698