| Index: chrome/renderer/resources/extensions/omnibox_custom_bindings.js
|
| diff --git a/chrome/renderer/resources/extensions/omnibox_custom_bindings.js b/chrome/renderer/resources/extensions/omnibox_custom_bindings.js
|
| index f77ebd605b47ace59bdfd91b802e499ff3f12e01..fd23fa5c4e3a0b36211cc7a68e9031c603538891 100644
|
| --- a/chrome/renderer/resources/extensions/omnibox_custom_bindings.js
|
| +++ b/chrome/renderer/resources/extensions/omnibox_custom_bindings.js
|
| @@ -7,7 +7,7 @@
|
|
|
| (function() {
|
|
|
| -native function GetChromeHidden();
|
| +var chromeHidden = requireNative('chrome_hidden').GetChromeHidden();
|
|
|
| // Remove invalid characters from |text| so that it is suitable to use
|
| // for |AutocompleteMatch::contents|.
|
| @@ -79,7 +79,7 @@ function parseOmniboxDescription(input) {
|
| return result;
|
| }
|
|
|
| -GetChromeHidden().registerCustomHook('omnibox', function(bindingsAPI) {
|
| +chromeHidden.registerCustomHook('omnibox', function(bindingsAPI) {
|
| var apiFunctions = bindingsAPI.apiFunctions;
|
| var sendRequest = bindingsAPI.sendRequest;
|
|
|
|
|