Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(476)

Side by Side Diff: chrome/common/chrome_icon_resources_win.cc

Issue 2750023002: Incognito icon added to Windows taskbar jumplist. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/chrome_icon_resources_win.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/chrome_icon_resources_win.h" 5 #include "chrome/common/chrome_icon_resources_win.h"
6 6
7 namespace icon_resources { 7 namespace icon_resources {
8 8
9 // The indices here must be consistent with the order of icons in chrome_exe.rc. 9 // The indices here must be consistent with the order of icons in chrome_exe.rc.
10 10
11 #if defined(GOOGLE_CHROME_BUILD) 11 #if defined(GOOGLE_CHROME_BUILD)
12 const int kApplicationIndex = 0; 12 const int kApplicationIndex = 0;
13 const int kApplication2Index = 1; 13 const int kApplication2Index = 1;
14 const int kApplication3Index = 2; 14 const int kApplication3Index = 2;
15 const int kApplication4Index = 3; 15 const int kApplication4Index = 3;
16 const int kSxSApplicationIndex = 4; 16 const int kSxSApplicationIndex = 4;
17 const int kAppLauncherIndex = 5; 17 const int kAppLauncherIndex = 5;
18 const int kSxSAppLauncherIndex = 6; 18 const int kSxSAppLauncherIndex = 6;
19 const int kIncognitoIndex = 7;
19 20
20 #else 21 #else
21 const int kApplicationIndex = 0; 22 const int kApplicationIndex = 0;
22 const int kAppLauncherIndex = 1; 23 const int kAppLauncherIndex = 1;
24 const int kIncognitoIndex = 2;
23 25
24 // For google_chrome_sxs_distribution.cc to compile in a dev build only. 26 // For google_chrome_sxs_distribution.cc to compile in a dev build only.
25 const int kSxSApplicationIndex = -1; 27 const int kSxSApplicationIndex = -1;
26 const int kSxSAppLauncherIndex = -1; 28 const int kSxSAppLauncherIndex = -1;
27 #endif 29 #endif
28 30
29 } // namespace icon_resources 31 } // namespace icon_resources
OLDNEW
« no previous file with comments | « chrome/common/chrome_icon_resources_win.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698