| Index: chrome/browser/resources/options/startup_overlay.js
|
| diff --git a/chrome/browser/resources/options/startup_overlay.js b/chrome/browser/resources/options/startup_overlay.js
|
| index 3784f0e3efa9e286a77c86f73f329502c83227bd..eef625dc0dccf44513e9c93856cd0362d436e5b6 100644
|
| --- a/chrome/browser/resources/options/startup_overlay.js
|
| +++ b/chrome/browser/resources/options/startup_overlay.js
|
| @@ -155,15 +155,10 @@ cr.define('options', function() {
|
| };
|
|
|
| // Forward public APIs to private implementations.
|
| - [
|
| + cr.makePublic(StartupOverlay, [
|
| 'updateStartupPages',
|
| 'updateAutocompleteSuggestions',
|
| - ].forEach(function(name) {
|
| - StartupOverlay[name] = function() {
|
| - var instance = StartupOverlay.getInstance();
|
| - return instance[name + '_'].apply(instance, arguments);
|
| - };
|
| - });
|
| + ]);
|
|
|
| // Export
|
| return {
|
|
|