diff options
Diffstat (limited to 'chrome/browser/resources/options/search_engine_manager.js')
-rw-r--r-- | chrome/browser/resources/options/search_engine_manager.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/chrome/browser/resources/options/search_engine_manager.js b/chrome/browser/resources/options/search_engine_manager.js index dc5cf25..7d8df03 100644 --- a/chrome/browser/resources/options/search_engine_manager.js +++ b/chrome/browser/resources/options/search_engine_manager.js @@ -37,7 +37,8 @@ cr.define('options', function() { /** * List for extension keywords. * @private - extensionList_ : null, + */ + extensionList_: null, /** inheritDoc */ initializePage: function() { @@ -112,12 +113,13 @@ cr.define('options', function() { }; SearchEngineManager.validityCheckCallback = function(validity, modelIndex) { - // Forward to both lists; the one without a matching modelIndex will ignore - // it. + // Forward to all lists; those without a matching modelIndex will ignore it. SearchEngineManager.getInstance().defaultsList_.validationComplete( validity, modelIndex); SearchEngineManager.getInstance().othersList_.validationComplete( validity, modelIndex); + SearchEngineManager.getInstance().extensionList_.validationComplete( + validity, modelIndex); }; // Export |