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

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: Another merge 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 <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 12 matching lines...) Expand all
23 <input type="radio" name="cookies" value="block"> 23 <input type="radio" name="cookies" value="block">
24 <span i18n-content="cookies_block"></span> 24 <span i18n-content="cookies_block"></span>
25 </label> 25 </label>
26 </div> 26 </div>
27 <div class="checkbox"> 27 <div class="checkbox">
28 <label> 28 <label>
29 <input pref="profile.block_third_party_cookies" type="checkbox"> 29 <input pref="profile.block_third_party_cookies" type="checkbox">
30 <span i18n-content="cookies_block_3rd_party"></span> 30 <span i18n-content="cookies_block_3rd_party"></span>
31 </label> 31 </label>
32 </div> 32 </div>
33 <div class="checkbox"> 33 <div class="checkbox" guest-visibility="disabled">
34 <label> 34 <label>
35 <input id="clear-cookies-on-exit" 35 <input id="clear-cookies-on-exit"
36 pref="profile.clear_site_data_on_exit" type="checkbox"> 36 pref="profile.clear_site_data_on_exit" type="checkbox">
37 <span i18n-content="cookies_lso_clear_when_close" 37 <span i18n-content="cookies_lso_clear_when_close"
38 class="clear-plugin-lso-data-enabled"></span> 38 class="clear-plugin-lso-data-enabled"></span>
39 <span i18n-content="cookies_clear_when_close" 39 <span i18n-content="cookies_clear_when_close"
40 class="clear-plugin-lso-data-disabled"></span> 40 class="clear-plugin-lso-data-disabled"></span>
41 </label> 41 </label>
42 </div> 42 </div>
43 <button class="exceptions-list-button" contentType="cookies" 43 <button class="exceptions-list-button" contentType="cookies"
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 </label> 257 </label>
258 </div> 258 </div>
259 </section> 259 </section>
260 </div> 260 </div>
261 <div class="action-area"> 261 <div class="action-area">
262 <div class="button-strip"> 262 <div class="button-strip">
263 <button id="content-settings-overlay-confirm" i18n-content="ok"></button> 263 <button id="content-settings-overlay-confirm" i18n-content="ok"></button>
264 </div> 264 </div>
265 </div> 265 </div>
266 </div> 266 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698