| 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 6ec7da0a8c31d292273414624281519464253503..2c2c6de907c81656f9f7a065907057cf47ea066e 100644
|
| --- a/chrome/browser/resources/options/browser_options.js
|
| +++ b/chrome/browser/resources/options/browser_options.js
|
| @@ -442,9 +442,9 @@ cr.define('options', function() {
|
| [$('accessibility-high-contrast-check').checked]);
|
| };
|
|
|
| - $('accessibility-screen-magnifier-check').onchange = function(event) {
|
| + $('accessibility-screen-magnifier-type').onchange = function(event) {
|
| chrome.send('screenMagnifierChange',
|
| - [$('accessibility-screen-magnifier-check').checked]);
|
| + [$('accessibility-screen-magnifier-type').value]);
|
| };
|
| }
|
|
|
| @@ -1171,11 +1171,11 @@ cr.define('options', function() {
|
| },
|
|
|
| /**
|
| - * Set the initial state of the screen magnifier checkbox.
|
| + * Set the initial state of the screen magnifier dropdown.
|
| * @private
|
| */
|
| - setScreenMagnifierCheckboxState_: function(checked) {
|
| - $('accessibility-screen-magnifier-check').checked = checked;
|
| + setScreenMagnifierTypeState_: function(type) {
|
| + $('accessibility-screen-magnifier-type').value = type;
|
| },
|
|
|
| /**
|
| @@ -1319,7 +1319,7 @@ cr.define('options', function() {
|
| 'setMetricsReportingSettingVisibility',
|
| 'setPasswordGenerationSettingVisibility',
|
| 'setProfilesInfo',
|
| - 'setScreenMagnifierCheckboxState',
|
| + 'setScreenMagnifierTypeState',
|
| 'setSpokenFeedbackCheckboxState',
|
| 'setThemesResetButtonEnabled',
|
| 'setupCloudPrintConnectorSection',
|
|
|