| Index: chrome/browser/win/jumplist.cc
|
| diff --git a/chrome/browser/win/jumplist.cc b/chrome/browser/win/jumplist.cc
|
| index c6d518a91bccc2a199d1ed4ca4b291c73e3ea803..6a8454e7dc7fa633797ca47ac2343255bdc5f2e2 100644
|
| --- a/chrome/browser/win/jumplist.cc
|
| +++ b/chrome/browser/win/jumplist.cc
|
| @@ -24,6 +24,7 @@
|
| #include "chrome/browser/sessions/tab_restore_service_factory.h"
|
| #include "chrome/browser/shell_integration_win.h"
|
| #include "chrome/common/chrome_constants.h"
|
| +#include "chrome/common/chrome_icon_resources_win.h"
|
| #include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/pref_names.h"
|
| #include "chrome/common/url_constants.h"
|
| @@ -150,8 +151,7 @@ bool UpdateTaskCategory(
|
| }
|
|
|
| // Create an IShellLink object which launches Chrome in incognito mode, and
|
| - // add it to the collection. We use our application icon as the icon for
|
| - // this item.
|
| + // add it to the collection.
|
| if (incognito_availability != IncognitoModePrefs::DISABLED) {
|
| scoped_refptr<ShellLinkItem> incognito = CreateShellLink();
|
| incognito->GetCommandLine()->AppendSwitch(switches::kIncognito);
|
| @@ -160,7 +160,7 @@ bool UpdateTaskCategory(
|
| base::ReplaceSubstringsAfterOffset(
|
| &incognito_title, 0, L"&", base::StringPiece16());
|
| incognito->set_title(incognito_title);
|
| - incognito->set_icon(chrome_path.value(), icon_index);
|
| + incognito->set_icon(chrome_path.value(), icon_resources::kIncognitoIndex);
|
| items.push_back(incognito);
|
| }
|
|
|
|
|