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

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

Issue 4091005: Remove SSL 2.0 support. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Sync with ToT Created 10 years 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
« no previous file with comments | « chrome/browser/options_util.cc ('k') | chrome/browser/resources/options/advanced_options.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div class="page hidden" id="advancedPage"> 1 <div class="page hidden" id="advancedPage">
2 <h1 i18n-content="advancedPage"></h1> 2 <h1 i18n-content="advancedPage"></h1>
3 <section> 3 <section>
4 <h3 i18n-content="advancedSectionTitlePrivacy"></h3> 4 <h3 i18n-content="advancedSectionTitlePrivacy"></h3>
5 <div> 5 <div>
6 <div> 6 <div>
7 <button id="privacyContentSettingsButton" 7 <button id="privacyContentSettingsButton"
8 i18n-content="privacyContentSettingsButton"></button> 8 i18n-content="privacyContentSettingsButton"></button>
9 <button id="privacyClearDataButton" 9 <button id="privacyClearDataButton"
10 i18n-content="privacyClearDataButton"></button> 10 i18n-content="privacyClearDataButton"></button>
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 <div i18n-content="certificatesLabel"></div> 132 <div i18n-content="certificatesLabel"></div>
133 <div><button id="certificatesManageButton" 133 <div><button id="certificatesManageButton"
134 i18n-content="certificatesManageButton"></button></div> 134 i18n-content="certificatesManageButton"></button></div>
135 <if expr="os == 'win32'"> 135 <if expr="os == 'win32'">
136 <!-- Configure these options for manual handling on windows --> 136 <!-- Configure these options for manual handling on windows -->
137 <label class="checkbox"> 137 <label class="checkbox">
138 <input id="sslCheckRevocation" type="checkbox"> 138 <input id="sslCheckRevocation" type="checkbox">
139 <span i18n-content="sslCheckRevocation"></span> 139 <span i18n-content="sslCheckRevocation"></span>
140 </label> 140 </label>
141 <label class="checkbox"> 141 <label class="checkbox">
142 <input id="sslUseSSL2" type="checkbox">
143 <span i18n-content="sslUseSSL2"></span>
144 </label>
145 <label class="checkbox">
146 <input id="sslUseSSL3" type="checkbox"> 142 <input id="sslUseSSL3" type="checkbox">
147 <span i18n-content="sslUseSSL3"></span> 143 <span i18n-content="sslUseSSL3"></span>
148 </label> 144 </label>
149 <label class="checkbox"> 145 <label class="checkbox">
150 <input id="sslUseTLS1" type="checkbox"> 146 <input id="sslUseTLS1" type="checkbox">
151 <span i18n-content="sslUseTLS1"></span> 147 <span i18n-content="sslUseTLS1"></span>
152 </label> 148 </label>
153 </if> 149 </if>
154 <if expr="not pp_ifdef('chromeos') and (os == 'linux2' or os.find('bsd') != -1)" > 150 <if expr="not pp_ifdef('chromeos') and (os == 'linux2' or os.find('bsd') != -1)" >
155 <!-- Configure these options for Linux/BSD as preference keys --> 151 <!-- Configure these options for Linux/BSD as preference keys -->
156 <label class="checkbox"> 152 <label class="checkbox">
157 <input id="sslCheckRevocation" pref="ssl.rev_checking.enabled" 153 <input id="sslCheckRevocation" pref="ssl.rev_checking.enabled"
158 metric="Options_CheckCertRevocation" type="checkbox"> 154 metric="Options_CheckCertRevocation" type="checkbox">
159 <span i18n-content="sslCheckRevocation"></span> 155 <span i18n-content="sslCheckRevocation"></span>
160 </label> 156 </label>
161 <label class="checkbox"> 157 <label class="checkbox">
162 <input id="sslUseSSL2" pref="ssl.ssl2.enabled" metric="Options_SSL2"
163 type="checkbox">
164 <span i18n-content="sslUseSSL2"></span>
165 </label>
166 <label class="checkbox">
167 <input id="sslUseSSL3" pref="ssl.ssl3.enabled" metric="Options_SSL3" 158 <input id="sslUseSSL3" pref="ssl.ssl3.enabled" metric="Options_SSL3"
168 type="checkbox"> 159 type="checkbox">
169 <span i18n-content="sslUseSSL3"></span> 160 <span i18n-content="sslUseSSL3"></span>
170 </label> 161 </label>
171 <label class="checkbox"> 162 <label class="checkbox">
172 <input id="sslUseTLS1" pref="ssl.tls1.enabled" metric="Options_TLS1" 163 <input id="sslUseTLS1" pref="ssl.tls1.enabled" metric="Options_TLS1"
173 type="checkbox"> 164 type="checkbox">
174 <span i18n-content="sslUseTLS1"></span> 165 <span i18n-content="sslUseTLS1"></span>
175 </label> 166 </label>
176 </if> 167 </if>
(...skipping 11 matching lines...) Expand all
188 <button id="cloudPrintProxyManageButton" 179 <button id="cloudPrintProxyManageButton"
189 i18n-content="cloudPrintProxyEnabledManageButton"></button> 180 i18n-content="cloudPrintProxyEnabledManageButton"></button>
190 </div> 181 </div>
191 </div> 182 </div>
192 </section> 183 </section>
193 </if> 184 </if>
194 <div class="button-strip"> 185 <div class="button-strip">
195 <button id="optionsReset" i18n-content="optionsReset"></button> 186 <button id="optionsReset" i18n-content="optionsReset"></button>
196 </div> 187 </div>
197 </div> 188 </div>
OLDNEW
« no previous file with comments | « chrome/browser/options_util.cc ('k') | chrome/browser/resources/options/advanced_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698