| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @fileoverview | 6 * @fileoverview |
| 7 * 'settings-manage-a11y-page' is the subpage with the accessibility | 7 * 'settings-manage-a11y-page' is the subpage with the accessibility |
| 8 * settings. | 8 * settings. |
| 9 */ | 9 */ |
| 10 Polymer({ | 10 Polymer({ |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 /** | 55 /** |
| 56 * Whether adjustable large cursor is enabled or not. | 56 * Whether adjustable large cursor is enabled or not. |
| 57 * @private {boolean} | 57 * @private {boolean} |
| 58 */ | 58 */ |
| 59 enableAdjustableLargeCursor_: { | 59 enableAdjustableLargeCursor_: { |
| 60 type: Boolean, | 60 type: Boolean, |
| 61 value: function() { | 61 value: function() { |
| 62 return loadTimeData.getBoolean('enableAdjustableLargeCursor'); | 62 return loadTimeData.getBoolean('enableAdjustableLargeCursor'); |
| 63 }, | 63 }, |
| 64 }, | 64 }, |
| 65 |
| 66 /** @private */ |
| 67 isGuest_: { |
| 68 type: Boolean, |
| 69 value: function() { return loadTimeData.getBoolean('isGuest'); } |
| 70 }, |
| 65 }, | 71 }, |
| 66 | 72 |
| 67 /** @private */ | 73 /** @private */ |
| 68 onChromeVoxSettingsTap_: function() { | 74 onChromeVoxSettingsTap_: function() { |
| 69 chrome.send('showChromeVoxSettings'); | 75 chrome.send('showChromeVoxSettings'); |
| 70 }, | 76 }, |
| 71 | 77 |
| 72 /** @private */ | 78 /** @private */ |
| 73 onSelectToSpeakSettingsTap_: function() { | 79 onSelectToSpeakSettingsTap_: function() { |
| 74 chrome.send('showSelectToSpeakSettings'); | 80 chrome.send('showSelectToSpeakSettings'); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 settings.Route.POINTERS, | 112 settings.Route.POINTERS, |
| 107 /* dynamicParams */ null, /* removeSearch */ true); | 113 /* dynamicParams */ null, /* removeSearch */ true); |
| 108 }, | 114 }, |
| 109 | 115 |
| 110 /** @private */ | 116 /** @private */ |
| 111 onMoreFeaturesTap_: function() { | 117 onMoreFeaturesTap_: function() { |
| 112 window.open( | 118 window.open( |
| 113 'https://chrome.google.com/webstore/category/collection/accessibility'); | 119 'https://chrome.google.com/webstore/category/collection/accessibility'); |
| 114 }, | 120 }, |
| 115 }); | 121 }); |
| OLD | NEW |