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

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

Issue 6122008: Also delete plugin data when the cookies checkbox in the clear browsing data dialog is checked. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 9 years, 11 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 | Annotate | Revision Log
OLDNEW
1 <div class="page hidden" id="clearBrowserDataPage"> 1 <div class="page hidden" id="clearBrowserDataPage">
2 <h1 i18n-content="clearBrowsingDataTitle"></h1> 2 <h1 i18n-content="clearBrowsingDataTitle"></h1>
3 <section> 3 <section>
4 <h3 i18n-content="clearBrowsingDataSectionHeader"></h3> 4 <h3 i18n-content="clearBrowsingDataSectionHeader"></h3>
5 <div> 5 <div>
6 <span i18n-content="clearBrowsingDataLabel"></span> 6 <span i18n-content="clearBrowsingDataLabel"></span>
7 <select id="clearBrowsingDataTimePeriod" 7 <select id="clearBrowsingDataTimePeriod"
8 i18n-options="clearBrowsingDataTimeList" 8 i18n-options="clearBrowsingDataTimeList"
9 pref="browser.clear_data.time_period" 9 pref="browser.clear_data.time_period"
10 dataType='number'> 10 dataType='number'>
(...skipping 10 matching lines...) Expand all
21 <span i18n-content="deleteDownloadHistoryCheckbox"></span> 21 <span i18n-content="deleteDownloadHistoryCheckbox"></span>
22 </label> 22 </label>
23 <label class="checkbox"> 23 <label class="checkbox">
24 <input id="deleteCacheCheckbox" 24 <input id="deleteCacheCheckbox"
25 pref="browser.clear_data.cache" type="checkbox"> 25 pref="browser.clear_data.cache" type="checkbox">
26 <span i18n-content="deleteCacheCheckbox"></span> 26 <span i18n-content="deleteCacheCheckbox"></span>
27 </label> 27 </label>
28 <label class="checkbox"> 28 <label class="checkbox">
29 <input id="deleteCookiesCheckbox" 29 <input id="deleteCookiesCheckbox"
30 pref="browser.clear_data.cookies" type="checkbox"> 30 pref="browser.clear_data.cookies" type="checkbox">
31 <span i18n-content="deleteCookiesCheckbox"></span> 31 <span id="deleteCookiesLabel"></span>
32 </label> 32 </label>
33 <label class="checkbox"> 33 <label class="checkbox">
34 <input id="deletePasswordsCheckbox" 34 <input id="deletePasswordsCheckbox"
35 pref="browser.clear_data.passwords" type="checkbox"> 35 pref="browser.clear_data.passwords" type="checkbox">
36 <span i18n-content="deletePasswordsCheckbox"></span> 36 <span i18n-content="deletePasswordsCheckbox"></span>
37 </label> 37 </label>
38 <label class="checkbox"> 38 <label class="checkbox">
39 <input id="deleteFormDataCheckbox" 39 <input id="deleteFormDataCheckbox"
40 pref="browser.clear_data.form_data" type="checkbox"> 40 pref="browser.clear_data.form_data" type="checkbox">
41 <span i18n-content="deleteFormDataCheckbox"></span> 41 <span i18n-content="deleteFormDataCheckbox"></span>
42 </label> 42 </label>
43 </div> 43 </div>
44 <button id="clearBrowsingDataCommit" 44 <button id="clearBrowsingDataCommit"
45 i18n-content="clearBrowsingDataCommit"> 45 i18n-content="clearBrowsingDataCommit">
46 </button> 46 </button>
47 <span id="cbdThrobber"></span> 47 <span id="cbdThrobber"></span>
48 <hr> 48 <hr>
49 <a target="_blank" i18n-content="flash_storage_settings" 49 <a target="_blank" i18n-content="flash_storage_settings"
50 i18n-values="href:flash_storage_url"></a> 50 i18n-values="href:flash_storage_url"></a>
51 </div> 51 </div>
52 </section> 52 </section>
53 </div> 53 </div>
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/options/clear_browser_data_handler.cc ('k') | chrome/browser/resources/options/clear_browser_data.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698