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

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

Issue 2458453002: [sensors] Add Permission guard to the generic sensor apis.
Patch Set: Move permissions stuff to SensorProxy, remove aw related stuff 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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 <input type="radio" name="midi-sysex" value="block"> 547 <input type="radio" name="midi-sysex" value="block">
548 <span i18n-content="midiSysExBlock"></span> 548 <span i18n-content="midiSysExBlock"></span>
549 </label> 549 </label>
550 </div> 550 </div>
551 <div class="settings-row"> 551 <div class="settings-row">
552 <button class="exceptions-list-button" contentType="midi-sysex" 552 <button class="exceptions-list-button" contentType="midi-sysex"
553 i18n-content="manageExceptions"></button> 553 i18n-content="manageExceptions"></button>
554 </div> 554 </div>
555 </div> 555 </div>
556 </section> 556 </section>
557 <!-- Sensors filter -->
558 <section>
559 <h3 i18n-content="sensorsHeader"></h3>
560 <div>
561 <div class="radio">
562 <label>
563 <input type="radio" name="sensors" value="allow">
564 <span i18n-content="sensorsAllow"></span>
565 </label>
566 </div>
567 <div class="radio">
568 <label>
569 <input type="radio" name="sensors" value="ask">
570 <span i18n-content="sensorsAsk"></span>
571 </label>
572 </div>
573 <div class="radio">
574 <label>
575 <input type="radio" name="sensors" value="block">
576 <span i18n-content="sensorsBlock"></span>
577 </label>
578 </div>
579 <div class="settings-row">
580 <button class="exceptions-list-button" contentType="sensors"
581 i18n-content="manageExceptions"></button>
582 </div>
583 </div>
584 </section>
557 <!-- Push messaging filter --> 585 <!-- Push messaging filter -->
558 <section id="experimental-push-messaging-settings" hidden="true"> 586 <section id="experimental-push-messaging-settings" hidden="true">
559 <h3 i18n-content="pushMessagingHeader"></h3> 587 <h3 i18n-content="pushMessagingHeader"></h3>
560 <div> 588 <div>
561 <div class="radio"> 589 <div class="radio">
562 <label> 590 <label>
563 <input type="radio" name="push-messaging" value="allow"> 591 <input type="radio" name="push-messaging" value="allow">
564 <span i18n-content="pushMessagingAllow"></span> 592 <span i18n-content="pushMessagingAllow"></span>
565 </label> 593 </label>
566 </div> 594 </div>
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 </section> 671 </section>
644 </div> 672 </div>
645 <div class="action-area"> 673 <div class="action-area">
646 <div class="button-strip"> 674 <div class="button-strip">
647 <button id="content-settings-overlay-confirm" class="default-button" 675 <button id="content-settings-overlay-confirm" class="default-button"
648 i18n-content="done"> 676 i18n-content="done">
649 </button> 677 </button>
650 </div> 678 </div>
651 </div> 679 </div>
652 </div> 680 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698