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

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

Issue 2830036: Advanced (Under the Hood) options panel code review (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 <div class="page hidden" id="advancedPage">
2 <h1 i18n-content="advancedPage"></h1>
3 <section>
4 <h3 i18n-content="advancedSectionTitlePrivacy"></h3>
5 <table class="option-control-table">
6 <tr>
7 <button id="privacyContentSettingsButton"
8 i18n-content="privacyContentSettingsButton"></button>
9 <button id="privacyClearDataButton"
10 i18n-content="privacyClearDataButton"></button>
11 </tr>
12 <tr>
13 <div class="section-text"
14 i18n-content="disableServices"></div>
15 <div id="privacyLearnMore">
16 <a target="_blank" i18n-content="privacyLearnMoreLabel"
17 i18n-values="href:privacyLearnMoreURL"></a></div>
18 </tr>
19 <tr id="linkDoctorCheckbox">
20 <td class="option-name"><label><input id="alternateErrorPagesEnabled"
21 pref="alternate_error_pages.enabled" type="checkbox"><span
22 i18n-content="linkDoctorPref"></span></label></td>
23 </tr>
24 <tr id="suggestCheckbox">
25 <td class="option-name"><label><input id="searchSuggestEnabled"
26 pref="search.suggest_enabled" type="checkbox"><span
27 i18n-content="suggestPref"></span></label></td>
28 </tr>
29 <tr id="dnsPrefetchingCheckbox">
30 <td class="option-name"><label><input id="dnsPrefetchingEnabled"
31 pref="dns_prefetching.enabled" type="checkbox"><span
32 i18n-content="networkDNSPrefetchEnabledDescription"></span></label>
33 </td>
34 </tr>
35 <tr id="safeBrowsingCheckbox">
36 <td class="option-name"><label><input id="safeBrowsingEnabled"
37 pref="safebrowsing.enabled" type="checkbox"><span
38 i18n-content="safeBrowsingEnableProtection"></span></label></td>
39 </tr>
40 <!-- TODO(csilv): This option only exists on Chrome builds, needs to be
41 ommitted for Chromium
42 <tr id="metricsReportingCheckbox">
43 <td class="option-name"><label><input id="metricsReportingEnabled"
44 pref="user_experience_metrics.reporting_enabled" type="checkbox">
45 <span i18n-content="enableLogging"></span></label></td>
46 </tr>-->
47 </table>
48 </section>
49 <section>
50 <h3 i18n-content="advancedSectionTitleNetwork"></h3>
51 <table class="option-control-table">
52 <tr>
53 <div class="section-text"
54 i18n-content="proxiesLabel"></div>
55 </tr>
56 <tr>
57 <button id="proxiesConfigureButton"
58 i18n-content="proxiesConfigureButton"></button>
59 </tr>
60 </table>
61 </section>
62 <section>
63 <h3 i18n-content="advancedSectionTitleTranslate"></h3>
64 <table class="option-control-table">
65 <tr id="enableTranslateCheckbox">
66 <td class="option-name"><label><input id="enableTranslate"
67 pref="translate.enabled" type="checkbox"><span
68 i18n-content="translateEnableTranslate"></span></label></td>
69 </tr>
70 </table>
71 </section>
72 <section>
73 <h3 i18n-content="downloadLocationGroupName"></h3>
74 <table class="option-control-table">
75 <tr>
76 <div class="section_text"
77 i18n-content="downloadLocationBrowseTitle"></div>
78 <input id="downloadLocationPath" type="text" size="80" disabled>
79 <button id="downloadLocationBrowseButton"
80 i18n-content="downloadLocationBrowseButton"></button>
81 </tr>
82 <tr id="promptForDownloadCheckbox">
83 <td class="option-name"><label><input id="promptForDownload"
84 pref="download.prompt_for_download" type="checkbox"><span
85 i18n-content="downloadLocationAskForSaveLocation"></span></label>
86 </td>
87 </tr>
88 <tr>
89 <div class="section-text"
90 i18n-content="autoOpenFileTypesInfo"></div>
91 <button id="autoOpenFileTypesResetToDefault"
92 i18n-content="autoOpenFileTypesResetToDefault"></button>
93 </tr>
94 </table>
95 </section>
96 <section>
97 <h3 i18n-content="advancedSectionTitleContent"></h3>
98 <table class="option-control-table">
99 <tr id="tabsToLinksCheckbox">
100 <td class="option-name"><label><input id="tabsToLinksPref"
101 pref="webkit.webprefs.tabs_to_links" type="checkbox"><span
102 i18n-content="tabsToLinksPref"></span></label></td>
103 </tr>
104 <tr id="promptForDownloadCheckbox">
105 <button id="fontSettingsConfigureFontsOnlyButton"
106 i18n-content="fontSettingsConfigureFontsOnlyButton"></button>
107 </tr>
108 </table>
109 </section>
110 <section>
111 <h3 i18n-content="advancedSectionTitleSecurity"></h3>
112 <table class="option-control-table">
113 <tr>
114 <div class="section_text"
115 i18n-content="certificatesLabel"></div>
116 <button id="certificatesManageButton"
117 i18n-content="certificatesManageButton"></button>
118 </tr>
119 <!-- TODO(csilv): Not supported on all platforms
120 <tr id="sslCheckRevocationCheckbox">
121 <td class="option-name"><label><input id="sslCheckRevocation"
122 pref="ssl.rev_checking.enabled" type="checkbox"><span
123 i18n-content="sslCheckRevocation"></span></label></td>
124 </tr>
125 -->
126 </table>
127 </section>
128 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options.html ('k') | chrome/browser/resources/options/advanced_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698