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

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

Issue 7314020: Update UMA user actions parsing, primarily to include WebUI metrics. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update regex Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
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 07c49f0b4cb291ceed673aa856b0a1bcc8ba6885..fdcb66cd12f1d7092fc476f530f1639281ceca31 100644
--- a/chrome/browser/resources/options/advanced_options.js
+++ b/chrome/browser/resources/options/advanced_options.js
@@ -94,18 +94,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',
@@ -218,25 +206,6 @@ var OptionsPage = options.OptionsPage;
}
};
- // 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;
« no previous file with comments | « chrome/browser/resources/options/advanced_options.html ('k') | chrome/browser/resources/options/autofill_options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698