| Index: chrome/browser/dom_ui/app_launcher_handler.cc
|
| diff --git a/chrome/browser/dom_ui/app_launcher_handler.cc b/chrome/browser/dom_ui/app_launcher_handler.cc
|
| index 01bffa9cea93ca62cbdacb37583c39790c17870c..cad07276a173f4eed9632a8e41af59c6dc6ddbde 100644
|
| --- a/chrome/browser/dom_ui/app_launcher_handler.cc
|
| +++ b/chrome/browser/dom_ui/app_launcher_handler.cc
|
| @@ -186,6 +186,11 @@ void AppLauncherHandler::FillAppDictionary(DictionaryValue* dictionary) {
|
| dictionary->SetBoolean("disableAppWindowLaunch", true);
|
| dictionary->SetBoolean("disableCreateAppShortcut", true);
|
| #endif
|
| +#if defined(OS_CHROMEOS)
|
| + // Making shortcut does not make sense on ChromeOS because it does not have
|
| + // a desktop.
|
| + dictionary->SetBoolean("disableCreateAppShortcut", true);
|
| +#endif
|
| }
|
|
|
| void AppLauncherHandler::HandleGetApps(const ListValue* args) {
|
|
|