| 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-keyboard' is the settings subpage with keyboard settings. | 7 * 'settings-keyboard' is the settings subpage with keyboard settings. |
| 8 */ | 8 */ |
| 9 cr.exportPath('settings'); | 9 cr.exportPath('settings'); |
| 10 | 10 |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 this.showCapsLock_ = showCapsLock; | 122 this.showCapsLock_ = showCapsLock; |
| 123 this.showDiamondKey_ = showDiamondKey; | 123 this.showDiamondKey_ = showDiamondKey; |
| 124 }, | 124 }, |
| 125 | 125 |
| 126 onShowKeyboardShortcutsOverlayTap_: function() { | 126 onShowKeyboardShortcutsOverlayTap_: function() { |
| 127 settings.DevicePageBrowserProxyImpl.getInstance() | 127 settings.DevicePageBrowserProxyImpl.getInstance() |
| 128 .showKeyboardShortcutsOverlay(); | 128 .showKeyboardShortcutsOverlay(); |
| 129 }, | 129 }, |
| 130 | 130 |
| 131 onShowLanguageInputTap_: function() { | 131 onShowLanguageInputTap_: function() { |
| 132 settings.navigateTo(settings.Route.LANGUAGES); | 132 settings.navigateTo(settings.routes.LANGUAGES); |
| 133 }, | 133 }, |
| 134 }); | 134 }); |
| OLD | NEW |