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

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

Issue 10808092: Add settings UI for managing defaults (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 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="cookies_tab_label"></h3> 7 <h3 i18n-content="cookies_tab_label"></h3>
8 <div> 8 <div>
9 <div class="radio"> 9 <div class="radio">
10 <label> 10 <label>
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 <label> 242 <label>
243 <input type="radio" name="mouselock" value="block"> 243 <input type="radio" name="mouselock" value="block">
244 <span i18n-content="mouselock_block"></span> 244 <span i18n-content="mouselock_block"></span>
245 </label> 245 </label>
246 </div> 246 </div>
247 <button class="exceptions-list-button" contentType="mouselock" 247 <button class="exceptions-list-button" contentType="mouselock"
248 i18n-content="manage_exceptions"></button> 248 i18n-content="manage_exceptions"></button>
249 </div> 249 </div>
250 </section> 250 </section>
251 <!-- Intent registration filter --> 251 <!-- Intent registration filter -->
252
252 <section> 253 <section>
253 <h3 i18n-content="webIntentsTabLabel" class="content-settings-header"> 254 <h3 i18n-content="web_intents_tab_label"
csilv 2012/08/09 18:18:04 Although this rule isn't followed consistently, we
254 </h3> 255 class="content-settings-header"></h3>
255 <div class="checkbox"> 256 <div>
256 <label> 257 <div class="checkbox">
257 <input pref="webintents.enabled" type="checkbox"> 258 <label>
258 <span i18n-content="allowWebIntents"></span> 259 <input pref="webintents.enabled" type="checkbox">
259 </label> 260 <span i18n-content="web_intents_enabled"></span>
261 </label>
262 </div>
263 <button id="manage-web-intents-defaults-button"
264 contentType="intents"
265 i18n-content="web_intents_defaults_button_title"></button>
260 </div> 266 </div>
261 </section> 267 </section>
268
262 <!-- Pepper Flash camera and microphone filter --> 269 <!-- Pepper Flash camera and microphone filter -->
263 <section id="pepper-flash-cameramic-section" class="pepper-flash-settings"> 270 <section id="pepper-flash-cameramic-section" class="pepper-flash-settings">
264 <h3 i18n-content="pepperFlashCameramicTabLabel"></h3> 271 <h3 i18n-content="pepperFlashCameramicTabLabel"></h3>
265 <div> 272 <div>
266 <div class="radio"> 273 <div class="radio">
267 <label> 274 <label>
268 <input type="radio" name="pepper-flash-cameramic" value="ask"> 275 <input type="radio" name="pepper-flash-cameramic" value="ask">
269 <span i18n-content="pepperFlashCameramicAsk"></span> 276 <span i18n-content="pepperFlashCameramicAsk"></span>
270 </label> 277 </label>
271 </div> 278 </div>
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 i18n-content="manageGalleriesButton"></button> 332 i18n-content="manageGalleriesButton"></button>
326 </div> 333 </div>
327 </section> 334 </section>
328 </div> 335 </div>
329 <div class="action-area"> 336 <div class="action-area">
330 <div class="button-strip"> 337 <div class="button-strip">
331 <button id="content-settings-overlay-confirm" i18n-content="ok"></button> 338 <button id="content-settings-overlay-confirm" i18n-content="ok"></button>
332 </div> 339 </div>
333 </div> 340 </div>
334 </div> 341 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698