| Index: chrome/browser/resources/ntp4/apps_page.js
|
| diff --git a/chrome/browser/resources/ntp4/apps_page.js b/chrome/browser/resources/ntp4/apps_page.js
|
| index 210e30586298c3e0b075aa131fb51620620abd88..260c660512c7db54444c5bd0c59a84f7c14f2c94 100644
|
| --- a/chrome/browser/resources/ntp4/apps_page.js
|
| +++ b/chrome/browser/resources/ntp4/apps_page.js
|
| @@ -150,12 +150,9 @@ cr.define('ntp', function() {
|
| if (cr.isMac) {
|
| // On Windows and Linux, these should always be visible. On ChromeOS,
|
| // they are never created. On Mac, shortcuts can only be created for
|
| - // new-style packaged apps, so hide the menu item. Also check if
|
| - // loadTimeData explicitly disables this as the feature is not yet
|
| - // enabled by default on Mac.
|
| + // new-style packaged apps, so hide the menu item.
|
| this.createShortcutSeparator_.hidden = this.createShortcut_.hidden =
|
| - !app.appData.packagedApp ||
|
| - loadTimeData.getBoolean('disableCreateAppShortcut');
|
| + !app.appData.packagedApp;
|
| }
|
| },
|
|
|
|
|