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

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

Issue 9464053: Hide/Disable several (meaningless) options in Settings uber-page for Guest. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Nit fixes + merge with TOT + gray out labels for disabled elements Created 8 years, 9 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 <h1 i18n-content="contentSettingsPage"></h1> 2 <h1 i18n-content="contentSettingsPage"></h1>
3 <div class="content-area"> 3 <div class="content-area">
4 <!-- Cookie filter tab contents --> 4 <!-- Cookie filter tab contents -->
5 <section> 5 <section>
6 <h3 i18n-content="cookies_tab_label"></h3> 6 <h3 i18n-content="cookies_tab_label"></h3>
7 <div> 7 <div>
8 <div class="radio"> 8 <div class="radio">
9 <label> 9 <label>
10 <input type="radio" name="cookies" value="allow" id="cookies-allow"> 10 <input type="radio" name="cookies" value="allow" id="cookies-allow">
(...skipping 11 matching lines...) Expand all
22 <input type="radio" name="cookies" value="block"> 22 <input type="radio" name="cookies" value="block">
23 <span i18n-content="cookies_block"></span> 23 <span i18n-content="cookies_block"></span>
24 </label> 24 </label>
25 </div> 25 </div>
26 <div class="checkbox"> 26 <div class="checkbox">
27 <label> 27 <label>
28 <input pref="profile.block_third_party_cookies" type="checkbox"> 28 <input pref="profile.block_third_party_cookies" type="checkbox">
29 <span i18n-content="cookies_block_3rd_party"></span> 29 <span i18n-content="cookies_block_3rd_party"></span>
30 </label> 30 </label>
31 </div> 31 </div>
32 <div class="checkbox"> 32 <div id="clear-cookies-on-exit-group" class="checkbox">
33 <label> 33 <label>
34 <input id="clear-cookies-on-exit" 34 <input id="clear-cookies-on-exit"
35 pref="profile.clear_site_data_on_exit" type="checkbox"> 35 pref="profile.clear_site_data_on_exit" type="checkbox">
36 <span i18n-content="cookies_lso_clear_when_close" 36 <span i18n-content="cookies_lso_clear_when_close"
37 class="clear-plugin-lso-data-enabled"></span> 37 class="clear-plugin-lso-data-enabled"></span>
38 <span i18n-content="cookies_clear_when_close" 38 <span i18n-content="cookies_clear_when_close"
39 class="clear-plugin-lso-data-disabled"></span> 39 class="clear-plugin-lso-data-disabled"></span>
40 </label> 40 </label>
41 </div> 41 </div>
42 <button class="exceptions-list-button" contentType="cookies" 42 <button class="exceptions-list-button" contentType="cookies"
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 </label> 256 </label>
257 </div> 257 </div>
258 </section> 258 </section>
259 </div> 259 </div>
260 <div class="action-area"> 260 <div class="action-area">
261 <div class="button-strip"> 261 <div class="button-strip">
262 <button id="content-settings-overlay-confirm" i18n-content="ok"></button> 262 <button id="content-settings-overlay-confirm" i18n-content="ok"></button>
263 </div> 263 </div>
264 </div> 264 </div>
265 </div> 265 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698