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

Unified Diff: chrome/browser/resources/options/advanced_options.js

Issue 4091005: Remove SSL 2.0 support. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Sync with ToT Created 10 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/advanced_options.js
===================================================================
--- chrome/browser/resources/options/advanced_options.js (revision 67717)
+++ chrome/browser/resources/options/advanced_options.js (working copy)
@@ -108,10 +108,6 @@
chrome.send('checkRevocationCheckboxAction',
[String($('sslCheckRevocation').checked)]);
};
- $('sslUseSSL2').onclick = function(event) {
- chrome.send('useSSL2CheckboxAction',
- [String($('sslUseSSL2').checked)]);
- };
$('sslUseSSL3').onclick = function(event) {
chrome.send('useSSL3CheckboxAction',
[String($('sslUseSSL3').checked)]);
@@ -162,8 +158,8 @@
//
// Set the checked state of the metrics reporting checkbox.
- AdvancedOptions.SetMetricsReportingCheckboxState = function(checked,
- disabled, user_changed) {
+ AdvancedOptions.SetMetricsReportingCheckboxState = function(
+ checked, disabled, user_changed) {
$('metricsReportingEnabled').checked = checked;
$('metricsReportingEnabled').disabled = disabled;
@@ -209,18 +205,12 @@
};
// Set the checked state for the sslCheckRevocation checkbox.
- AdvancedOptions.SetCheckRevocationCheckboxState = function(checked,
- disabled) {
+ AdvancedOptions.SetCheckRevocationCheckboxState = function(
+ checked, disabled) {
$('sslCheckRevocation').checked = checked;
$('sslCheckRevocation').disabled = disabled;
};
- // Set the checked state for the sslUseSSL2 checkbox.
- AdvancedOptions.SetUseSSL2CheckboxState = function(checked, disabled) {
- $('sslUseSSL2').checked = checked;
- $('sslUseSSL2').disabled = disabled;
- };
-
// Set the checked state for the sslUseSSL3 checkbox.
AdvancedOptions.SetUseSSL3CheckboxState = function(checked, disabled) {
$('sslUseSSL3').checked = checked;
« no previous file with comments | « chrome/browser/resources/options/advanced_options.html ('k') | chrome/browser/ui/views/options/advanced_contents_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698