| Index: chrome/browser/resources/vr_shell/vk.js
|
| diff --git a/chrome/browser/resources/vr_shell/vk.js b/chrome/browser/resources/vr_shell/vk.js
|
| index 8159bbf48634fb50caf678d4670469162dfad7ed..6a47eede82f05a3e58091dc617c706f6ec5358b9 100644
|
| --- a/chrome/browser/resources/vr_shell/vk.js
|
| +++ b/chrome/browser/resources/vr_shell/vk.js
|
| @@ -262,7 +262,9 @@ var vrShellVK = (function() {
|
|
|
| function vkCh(button) {
|
| if (button.key || button.code) {
|
| - // TODO(asimjour): Change the focus to the omnibox.
|
| + // This code limits use of the HTML keyboard to the omnibox.
|
| + document.querySelector("#omnibox-input-field").focus();
|
| +
|
| if (button.code != 'AltRight')
|
| sendKey('key', button.code, button.key);
|
| if (vkState.level == 1)
|
|
|