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

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

Issue 11550010: Remove partial magnifier from settings page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use a boolean pref instead of string pref. Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/browser_options.js
diff --git a/chrome/browser/resources/options/browser_options.js b/chrome/browser/resources/options/browser_options.js
index cfa3b1e03229e7d9bf9974943ca70328a8b5d975..d17bb995cbba604d7d8c35226cdcd001061bf446 100644
--- a/chrome/browser/resources/options/browser_options.js
+++ b/chrome/browser/resources/options/browser_options.js
@@ -404,11 +404,6 @@ cr.define('options', function() {
chrome.send('highContrastChange',
[$('accessibility-high-contrast-check').checked]);
};
-
- $('accessibility-screen-magnifier-type').onchange = function(event) {
- chrome.send('screenMagnifierChange',
- [$('accessibility-screen-magnifier-type').value]);
- };
}
// Display management section (CrOS only).
@@ -1186,14 +1181,6 @@ cr.define('options', function() {
},
/**
- * Set the initial state of the screen magnifier dropdown.
- * @private
- */
- setMagnifierTypeState_: function(type) {
- $('accessibility-screen-magnifier-type').value = type;
- },
-
- /**
* Set the initial state of the virtual keyboard checkbox.
* @private
*/
@@ -1335,7 +1322,6 @@ cr.define('options', function() {
'setMetricsReportingSettingVisibility',
'setPasswordGenerationSettingVisibility',
'setProfilesInfo',
- 'setMagnifierTypeState',
'setSpokenFeedbackCheckboxState',
'setThemesResetButtonEnabled',
'setVirtualKeyboardCheckboxState',
« no previous file with comments | « chrome/browser/resources/options/browser_options.html ('k') | chrome/browser/ui/webui/options/browser_options_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698