Chromium Code Reviews| Index: chrome/browser/resources/options/advanced_options.js |
| =================================================================== |
| --- chrome/browser/resources/options/advanced_options.js (revision 67360) |
| +++ 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( |
|
agl
2010/11/30 01:07:27
This change appears to be unrelated. Just checking
wtc
2010/11/30 02:14:30
You're right. These changes are unrelated, coding
|
| + 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( |
|
agl
2010/11/30 01:07:27
likewise
|
| + 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; |