Index: chrome/browser/ui/views/app_list/app_list_controller_win.cc |
diff --git a/chrome/browser/ui/views/app_list/app_list_controller_win.cc b/chrome/browser/ui/views/app_list/app_list_controller_win.cc |
index aaefdb211b1e427c60c18d7ef4744eb90c9ce150..5d347c3f7952dbbdac03284e1c11d1f5c8a9a822 100644 |
--- a/chrome/browser/ui/views/app_list/app_list_controller_win.cc |
+++ b/chrome/browser/ui/views/app_list/app_list_controller_win.cc |
@@ -235,10 +235,10 @@ void AppListController::ShowAppList() { |
current_view_->GetWidget()->GetTopLevelWidget()->GetNativeWindow(); |
ui::win::SetAppIdForWindow(GetAppModelId(), hwnd); |
CommandLine relaunch = GetAppListCommandLine(); |
+ string16 app_name(l10n_util::GetStringUTF16(IDS_APP_LIST_SHORTCUT_NAME)); |
ui::win::SetRelaunchDetailsForWindow( |
- relaunch.GetCommandLineString(), |
- l10n_util::GetStringUTF16(IDS_APP_LIST_SHORTCUT_NAME), |
- hwnd); |
+ relaunch.GetCommandLineString(), app_name, hwnd); |
+ ::SetWindowText(hwnd, app_name.c_str()); |
string16 icon_path = GetAppListIconPath(); |
ui::win::SetAppIconForWindow(icon_path, hwnd); |
current_view_->Show(); |