| Index: chrome/browser/jumplist_win.cc
|
| diff --git a/chrome/browser/jumplist_win.cc b/chrome/browser/jumplist_win.cc
|
| index 0c866b521e63573fd54edd6e6a85432a25acdf52..7902808aee696896f0b99bdba12843d4d3736932 100644
|
| --- a/chrome/browser/jumplist_win.cc
|
| +++ b/chrome/browser/jumplist_win.cc
|
| @@ -185,16 +185,14 @@ bool UpdateJumpList(const wchar_t* app_id,
|
| // This update request is applied into the JumpList when we commit this
|
| // transaction.
|
| if (!use_profiles_category && !jumplist_updater.AddCustomCategory(
|
| - base::UTF16ToWide(
|
| - l10n_util::GetStringUTF16(IDS_NEW_TAB_MOST_VISITED)),
|
| + l10n_util::GetStringUTF16(IDS_NEW_TAB_MOST_VISITED),
|
| most_visited_pages, profiles_or_most_visited_items)) {
|
| return false;
|
| }
|
|
|
| // Update the "Recently Closed" category of the JumpList.
|
| if (!jumplist_updater.AddCustomCategory(
|
| - base::UTF16ToWide(
|
| - l10n_util::GetStringUTF16(IDS_NEW_TAB_RECENTLY_CLOSED)),
|
| + l10n_util::GetStringUTF16(IDS_NEW_TAB_RECENTLY_CLOSED),
|
| recently_closed_pages, recently_closed_items)) {
|
| return false;
|
| }
|
|
|