Index: chrome/browser/resources/options/advanced_options.js |
diff --git a/chrome/browser/resources/options/advanced_options.js b/chrome/browser/resources/options/advanced_options.js |
index e24b2121c459046fc2962a8490537f5b0272eee6..46b4af044edee85bfe374006c3f720cce3839420 100644 |
--- a/chrome/browser/resources/options/advanced_options.js |
+++ b/chrome/browser/resources/options/advanced_options.js |
@@ -100,18 +100,6 @@ var OptionsPage = options.OptionsPage; |
}; |
} |
- $('sslCheckRevocation').onclick = function(event) { |
- chrome.send('checkRevocationCheckboxAction', |
- [String($('sslCheckRevocation').checked)]); |
- }; |
- $('sslUseSSL3').onclick = function(event) { |
- chrome.send('useSSL3CheckboxAction', |
- [String($('sslUseSSL3').checked)]); |
- }; |
- $('sslUseTLS1').onclick = function(event) { |
- chrome.send('useTLS1CheckboxAction', |
- [String($('sslUseTLS1').checked)]); |
- }; |
if ($('backgroundModeCheckbox')) { |
$('backgroundModeCheckbox').onclick = function(event) { |
chrome.send('backgroundModeAction', |
@@ -222,25 +210,6 @@ var OptionsPage = options.OptionsPage; |
$('proxiesLabel').textContent = label; |
}; |
- // Set the checked state for the sslCheckRevocation checkbox. |
- AdvancedOptions.SetCheckRevocationCheckboxState = function( |
- checked, disabled) { |
- $('sslCheckRevocation').checked = checked; |
- $('sslCheckRevocation').disabled = disabled; |
- }; |
- |
- // Set the checked state for the sslUseSSL3 checkbox. |
- AdvancedOptions.SetUseSSL3CheckboxState = function(checked, disabled) { |
- $('sslUseSSL3').checked = checked; |
- $('sslUseSSL3').disabled = disabled; |
- }; |
- |
- // Set the checked state for the sslUseTLS1 checkbox. |
- AdvancedOptions.SetUseTLS1CheckboxState = function(checked, disabled) { |
- $('sslUseTLS1').checked = checked; |
- $('sslUseTLS1').disabled = disabled; |
- }; |
- |
// Set the checked state for the backgroundModeCheckbox element. |
AdvancedOptions.SetBackgroundModeCheckboxState = function(checked) { |
$('backgroundModeCheckbox').checked = checked; |