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

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

Issue 902223002: Plugin Power Saver: Remove ASK (left C2P). Replace with DETECT. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 10 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 class="replace-with-website-settings"> 8 <div class="replace-with-website-settings">
9 <div class="radio controlled-setting-with-label"> 9 <div class="radio controlled-setting-with-label">
10 <label> 10 <label>
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 <input type="radio" name="plugins" value="detect"> 191 <input type="radio" name="plugins" value="detect">
192 <span> 192 <span>
193 <span i18n-content="pluginsDetect"></span> 193 <span i18n-content="pluginsDetect"></span>
194 <span class="controlled-setting-indicator" 194 <span class="controlled-setting-indicator"
195 content-setting="plugins" value="detect"></span> 195 content-setting="plugins" value="detect"></span>
196 </span> 196 </span>
197 </label> 197 </label>
198 </div> 198 </div>
199 <div class="radio controlled-setting-with-label"> 199 <div class="radio controlled-setting-with-label">
200 <label> 200 <label>
201 <input type="radio" name="plugins" value="ask">
202 <span>
203 <span i18n-content="pluginsAsk"></span>
204 <span class="controlled-setting-indicator"
205 content-setting="plugins" value="ask"></span>
206 </span>
207 </label>
208 </div>
209 <div class="radio controlled-setting-with-label">
210 <label>
211 <input type="radio" name="plugins" value="block"> 201 <input type="radio" name="plugins" value="block">
212 <span> 202 <span>
213 <span i18n-content="pluginsBlock"></span> 203 <span i18n-content="pluginsBlock"></span>
214 <span class="controlled-setting-indicator" 204 <span class="controlled-setting-indicator"
215 content-setting="plugins" value="block"></span> 205 content-setting="plugins" value="block"></span>
216 </span> 206 </span>
217 </label> 207 </label>
218 </div> 208 </div>
219 <div class="settings-row"> 209 <div class="settings-row">
220 <button class="exceptions-list-button" contentType="plugins" 210 <button class="exceptions-list-button" contentType="plugins"
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 </section> 642 </section>
653 </div> 643 </div>
654 <div class="action-area"> 644 <div class="action-area">
655 <div class="button-strip"> 645 <div class="button-strip">
656 <button id="content-settings-overlay-confirm" class="default-button" 646 <button id="content-settings-overlay-confirm" class="default-button"
657 i18n-content="done"> 647 i18n-content="done">
658 </button> 648 </button>
659 </div> 649 </div>
660 </div> 650 </div>
661 </div> 651 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698