blob: 0513df0dbd775d3d90bf0df9fa2007e81eb1c315 [file] [log] [blame]
[email protected]81375e872012-01-11 21:40:361// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]1a3aba82010-11-08 23:52:542// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]057569b2011-06-14 01:44:325#ifndef CHROME_APP_CHROME_COMMAND_IDS_H_
6#define CHROME_APP_CHROME_COMMAND_IDS_H_
[email protected]057569b2011-06-14 01:44:327
[email protected]1a3aba82010-11-08 23:52:548// This file lists all the command IDs understood by e.g. the browser.
9// It is used by Windows RC files, Mac NIB files, and other platforms too.
10
[email protected]98c62c42012-06-12 23:00:4611// Mac NIB files (e.g. chrome/app/nibs/MainMenu.xib) include ID numbers rather
12// than the corresponding #define labels. If you change a given command's
13// number, any NIB files that refer to it will also need to be updated.
14
[email protected]93b59fc2010-12-21 20:00:4715// Values below IDC_MinimumLabelValue are reserved for dynamic menu items.
16#define IDC_MinimumLabelValue 4000
17
[email protected]21fa3a12010-12-08 23:34:1618#define IDC_Messages 4000
19#define IDC_MessagesAll 4007
20#define IDC_MessagesNone 4008
[email protected]1a3aba82010-11-08 23:52:5421
22// NOTE: Within each of the following sections, the IDs are ordered roughly by
23// how they appear in the GUI/menus (left to right, top to bottom, etc.).
24
25// Navigation commands
26// TODO: Reorder to be in visible order; collapse holes
27#define IDC_BACK 33000
28#define IDC_FORWARD 33001
29#define IDC_RELOAD 33002
30#define IDC_HOME 33003
31#define IDC_OPEN_CURRENT_URL 33004
32#define IDC_STOP 33006
33#define IDC_RELOAD_IGNORING_CACHE 33007
[email protected]ad52ca662012-06-26 15:48:5534#define IDC_LOAD_NEW_TAB_PAGE 33008
[email protected]58e29032012-08-06 20:19:5735#define IDC_RELOAD_CLEARING_CACHE 33009
[email protected]1a3aba82010-11-08 23:52:5436
37// Window management commands
38#define IDC_NEW_WINDOW 34000
39#define IDC_NEW_INCOGNITO_WINDOW 34001
[email protected]e6ba5a12012-08-07 02:05:5340#define IDC_PIN_TO_START_SCREEN 34005
[email protected]1a3aba82010-11-08 23:52:5441#define IDC_CLOSE_WINDOW 34012
42#define IDC_ALWAYS_ON_TOP 34013
43#define IDC_NEW_TAB 34014
44#define IDC_CLOSE_TAB 34015
45#define IDC_SELECT_NEXT_TAB 34016
46#define IDC_SELECT_PREVIOUS_TAB 34017
47#define IDC_SELECT_TAB_0 34018
48#define IDC_SELECT_TAB_1 34019
49#define IDC_SELECT_TAB_2 34020
50#define IDC_SELECT_TAB_3 34021
51#define IDC_SELECT_TAB_4 34022
52#define IDC_SELECT_TAB_5 34023
53#define IDC_SELECT_TAB_6 34024
54#define IDC_SELECT_TAB_7 34025
55#define IDC_SELECT_LAST_TAB 34026
56#define IDC_DUPLICATE_TAB 34027
57#define IDC_RESTORE_TAB 34028
58#define IDC_SHOW_AS_TAB 34029
59#define IDC_FULLSCREEN 34030
60#define IDC_EXIT 34031
61#define IDC_MOVE_TAB_NEXT 34032
62#define IDC_MOVE_TAB_PREVIOUS 34033
[email protected]1a3aba82010-11-08 23:52:5463#define IDC_SEARCH 34035
[email protected]cdc05ec2011-05-18 15:15:5964#define IDC_DEBUG_FRAME_TOGGLE 34038
[email protected]d3766932011-08-04 22:18:2365#define IDC_PRESENTATION_MODE 34039
[email protected]77cbe50e2012-06-14 02:44:3866#define IDC_METRO_SNAP_ENABLE 34040
67#define IDC_METRO_SNAP_DISABLE 34041
ananta196db192014-08-28 21:37:5568#define IDC_WIN_DESKTOP_RESTART 34042
[email protected]770c6d82012-09-06 22:21:3269#define IDC_WIN8_METRO_RESTART 34043
ananta196db192014-08-28 21:37:5570#define IDC_WIN_CHROMEOS_RESTART 34044
[email protected]043537e2013-08-30 21:20:4971#define IDC_WINDOW_MENU 34045
72#define IDC_MINIMIZE_WINDOW 34046
73#define IDC_MAXIMIZE_WINDOW 34047
74#define IDC_ALL_WINDOWS_FRONT 34048
[email protected]d12cc5e2013-10-19 18:25:0675#define IDC_VISIT_DESKTOP_OF_LRU_USER_2 34049
76#define IDC_VISIT_DESKTOP_OF_LRU_USER_3 34050
[email protected]af97be4c62014-02-13 14:43:3477#define IDC_USE_SYSTEM_TITLE_BAR 34051
[email protected]1a3aba82010-11-08 23:52:5478
79// Page-related commands
80#define IDC_BOOKMARK_PAGE 35000
81#define IDC_BOOKMARK_ALL_TABS 35001
82#define IDC_VIEW_SOURCE 35002
83#define IDC_PRINT 35003
84#define IDC_SAVE_PAGE 35004
85#define IDC_ENCODING_MENU 35005
86#define IDC_EMAIL_PAGE_LOCATION 35006
vitalybukaf9433e42014-09-08 10:04:5587#define IDC_BASIC_PRINT 35007
[email protected]944d53be2014-05-02 16:42:3388#define IDC_TRANSLATE_PAGE 35009
[email protected]4bee4432014-05-05 13:11:4189#define IDC_MANAGE_PASSWORDS_FOR_PAGE 35010
[email protected]1a3aba82010-11-08 23:52:5490
91// When adding a new encoding to this list, be sure to append it to the
92// EncodingMenuController::kValidEncodingIds array in
93// encoding_menu_controller.cc.
94#define IDC_ENCODING_AUTO_DETECT 35500
95#define IDC_ENCODING_UTF8 35501
96#define IDC_ENCODING_UTF16LE 35502
jshin03456dca2015-03-24 20:51:3497#define IDC_ENCODING_WINDOWS1252 35503
98#define IDC_ENCODING_GBK 35504
99#define IDC_ENCODING_GB18030 35505
100#define IDC_ENCODING_BIG5 35506
101#define IDC_ENCODING_KOREAN 35507
102#define IDC_ENCODING_SHIFTJIS 35508
103#define IDC_ENCODING_ISO2022JP 35509
104#define IDC_ENCODING_EUCJP 35510
105#define IDC_ENCODING_THAI 35511
106#define IDC_ENCODING_ISO885915 35512
107#define IDC_ENCODING_MACINTOSH 35513
108#define IDC_ENCODING_ISO88592 35514
109#define IDC_ENCODING_WINDOWS1250 35515
110#define IDC_ENCODING_ISO88595 35516
111#define IDC_ENCODING_WINDOWS1251 35517
112#define IDC_ENCODING_KOI8R 35518
113#define IDC_ENCODING_KOI8U 35519
114#define IDC_ENCODING_ISO88597 35520
115#define IDC_ENCODING_WINDOWS1253 35521
116#define IDC_ENCODING_ISO88594 35522
117#define IDC_ENCODING_ISO885913 35523
118#define IDC_ENCODING_WINDOWS1257 35524
119#define IDC_ENCODING_ISO88593 35525
120#define IDC_ENCODING_ISO885910 35526
121#define IDC_ENCODING_ISO885914 35527
122#define IDC_ENCODING_ISO885916 35528
123#define IDC_ENCODING_WINDOWS1254 35529
124#define IDC_ENCODING_ISO88596 35530
125#define IDC_ENCODING_WINDOWS1256 35531
126#define IDC_ENCODING_ISO88598 35532
127#define IDC_ENCODING_WINDOWS1255 35533
128#define IDC_ENCODING_WINDOWS1258 35534
129#define IDC_ENCODING_ISO88598I 35535
130#define IDC_ENCODING_IBM866 35536
[email protected]1a3aba82010-11-08 23:52:54131
132// Clipboard commands
133#define IDC_CUT 36000
134#define IDC_COPY 36001
[email protected]1a3aba82010-11-08 23:52:54135#define IDC_PASTE 36003
136#define IDC_EDIT_MENU 36004
137
138// Find-in-page
139#define IDC_FIND 37000
140#define IDC_FIND_NEXT 37001
141#define IDC_FIND_PREVIOUS 37002
[email protected]56bf98f2013-09-23 07:27:24142#define IDC_FIND_MENU 37100
[email protected]1a3aba82010-11-08 23:52:54143
144// Zoom
145#define IDC_ZOOM_MENU 38000
146#define IDC_ZOOM_PLUS 38001
147#define IDC_ZOOM_NORMAL 38002
148#define IDC_ZOOM_MINUS 38003
149#define IDC_ZOOM_PERCENT_DISPLAY 38004
150
151// Focus various bits of UI
152#define IDC_FOCUS_TOOLBAR 39000
153#define IDC_FOCUS_LOCATION 39001
154#define IDC_FOCUS_SEARCH 39002
155#define IDC_FOCUS_MENU_BAR 39003
156#define IDC_FOCUS_NEXT_PANE 39004
157#define IDC_FOCUS_PREVIOUS_PANE 39005
158#define IDC_FOCUS_BOOKMARKS 39006
[email protected]822ca8c62013-04-19 00:49:15159#define IDC_FOCUS_INFOBARS 39007
[email protected]1a3aba82010-11-08 23:52:54160
161// Show various bits of UI
162#define IDC_OPEN_FILE 40000
163#define IDC_CREATE_SHORTCUTS 40001
[email protected]488e3952013-11-18 05:29:14164#define IDC_CREATE_HOSTED_APP 40002
165#define IDC_DEVELOPER_MENU 40003
166#define IDC_DEV_TOOLS 40004
167#define IDC_DEV_TOOLS_CONSOLE 40005
168#define IDC_TASK_MANAGER 40006
169#define IDC_DEV_TOOLS_DEVICES 40007
[email protected]236ad3022013-09-04 03:27:43170#if defined(GOOGLE_CHROME_BUILD)
[email protected]1c41a932010-11-22 23:41:23171#define IDC_FEEDBACK 40008
[email protected]236ad3022013-09-04 03:27:43172#endif
[email protected]1a3aba82010-11-08 23:52:54173#define IDC_SHOW_BOOKMARK_BAR 40009
174#define IDC_SHOW_HISTORY 40010
175#define IDC_SHOW_BOOKMARK_MANAGER 40011
176#define IDC_SHOW_DOWNLOADS 40012
177#define IDC_CLEAR_BROWSING_DATA 40013
178#define IDC_IMPORT_SETTINGS 40014
179#define IDC_OPTIONS 40015
180#define IDC_EDIT_SEARCH_ENGINES 40016
181#define IDC_VIEW_PASSWORDS 40017
182#define IDC_ABOUT 40018
[email protected]2ca35612012-06-12 03:49:48183#define IDC_HELP_PAGE_VIA_KEYBOARD 40019
184#define IDC_HELP_PAGE_VIA_MENU 40020
185#define IDC_SHOW_APP_MENU 40021
186#define IDC_MANAGE_EXTENSIONS 40022
187#define IDC_DEV_TOOLS_INSPECT 40023
188#define IDC_UPGRADE_DIALOG 40024
189#define IDC_VIEW_INCOMPATIBILITIES 40025
[email protected]2ca35612012-06-12 03:49:48190#define IDC_SHOW_KEYBOARD_OVERLAY 40027
191#define IDC_PROFILING_ENABLED 40028
[email protected]605749372011-07-26 03:06:42192#define IDC_BOOKMARKS_MENU 40029
[email protected]7c1490da2011-10-11 18:53:25193#define IDC_EXTENSION_ERRORS 40031
[email protected]d28c6b2c2013-01-17 16:05:19194#define IDC_SHOW_SIGNIN_ERROR 40032
[email protected]6e7d7bc2012-03-01 21:17:51195#define IDC_SHOW_SETTINGS_CHANGE_FIRST 40033
196#define IDC_SHOW_SETTINGS_CHANGE_LAST 40133
197#define IDC_SHOW_AVATAR_MENU 40134
[email protected]edb6e772012-03-22 00:58:03198#define IDC_EXTENSION_DISABLED_FIRST 40135
199#define IDC_EXTENSION_DISABLED_LAST 40235
[email protected]9b7ab882012-09-10 23:46:36200#define IDC_TOGGLE_REQUEST_TABLET_SITE 40236
[email protected]612a1cb12012-10-17 13:18:03201#define IDC_DEV_TOOLS_TOGGLE 40237
202#define IDC_EXTERNAL_EXTENSION_ALERT 40238
[email protected]2f1acc212012-11-13 10:43:51203#define IDC_RECENT_TABS_MENU 40239
[email protected]b1e270b2012-12-04 09:40:44204#define IDC_RECENT_TABS_NO_DEVICE_TABS 40240
[email protected]9b46b6c2013-10-01 05:59:23205#define IDC_SHOW_SETTINGS_RESET_BUBBLE 40241
pkotwicz4c3ef602014-11-17 21:29:44206#define IDC_SHOW_SYNC_ERROR 40242
207#define IDC_DISTILL_PAGE 40243
208#define IDC_HELP_MENU 40244
209#define IDC_EXTENSIONS_OVERFLOW_MENU 40245
210#define IDC_SHOW_SRT_BUBBLE 40246
xiaolingbao4366f65e2014-12-02 02:25:21211#define IDC_ELEVATED_RECOVERY_DIALOG 40247
caelyn4e4e08a2015-02-04 21:27:49212#define IDC_TAKE_SCREENSHOT 40248
andresantosod09957e82015-03-17 23:58:28213#define IDC_MORE_TOOLS_MENU 40249
anthonyvd7dc985da2015-03-23 16:53:19214#define IDC_SHOW_FAST_USER_SWITCHER 40250
[email protected]1a3aba82010-11-08 23:52:54215
216// Spell-check
217// Insert any additional suggestions before _LAST; these have to be consecutive.
218#define IDC_SPELLCHECK_SUGGESTION_0 41000
219#define IDC_SPELLCHECK_SUGGESTION_1 41001
220#define IDC_SPELLCHECK_SUGGESTION_2 41002
221#define IDC_SPELLCHECK_SUGGESTION_3 41003
222#define IDC_SPELLCHECK_SUGGESTION_4 41004
223#define IDC_SPELLCHECK_SUGGESTION_LAST IDC_SPELLCHECK_SUGGESTION_4
224#define IDC_SPELLCHECK_MENU 41005
225// Language entries are inserted using autogenerated values between
226// [_FIRST, _LAST).
227#define IDC_SPELLCHECK_LANGUAGES_FIRST 41006
228#define IDC_SPELLCHECK_LANGUAGES_LAST 41106
[email protected]bab9cd62012-06-11 06:36:29229#define IDC_CHECK_SPELLING_WHILE_TYPING 41107
[email protected]1a3aba82010-11-08 23:52:54230#define IDC_SPELLPANEL_TOGGLE 41109
231#define IDC_SPELLCHECK_ADD_TO_DICTIONARY 41110
232
233// Writing direction
[email protected]6faca7f2013-12-09 09:57:23234#define IDC_WRITING_DIRECTION_MENU 41120
235#define IDC_WRITING_DIRECTION_DEFAULT 41121
236#define IDC_WRITING_DIRECTION_LTR 41122
237#define IDC_WRITING_DIRECTION_RTL 41123
[email protected]1a3aba82010-11-08 23:52:54238
[email protected]1a3aba82010-11-08 23:52:54239// Translate
[email protected]dbe9bfa2014-06-02 16:01:29240#define IDC_TRANSLATE_ORIGINAL_LANGUAGE_BASE 42100
241#define IDC_TRANSLATE_TARGET_LANGUAGE_BASE 42400
[email protected]1a3aba82010-11-08 23:52:54242
[email protected]afcb43562011-09-02 23:33:38243// Speech input
244#define IDC_TOGGLE_SPEECH_INPUT 42500
245
[email protected]1a3aba82010-11-08 23:52:54246// Identifiers for platform-specific items.
247// Placed in a common file to help insure they never collide.
[email protected]1a3aba82010-11-08 23:52:54248#define IDC_VIEW_MENU 44000 // OSX only
[email protected]043537e2013-08-30 21:20:49249#define IDC_FILE_MENU 44001 // OSX only
250#define IDC_CHROME_MENU 44002 // OSX only
[email protected]732c3b52013-09-06 11:06:37251#define IDC_HIDE_APP 44003 // OSX only
[email protected]1a3aba82010-11-08 23:52:54252#define IDC_HISTORY_MENU 46000 // OSX only
[email protected]961a6932011-07-19 19:52:46253#define IDC_PROFILE_MAIN_MENU 46100 // OSX only
[email protected]1a3aba82010-11-08 23:52:54254#define IDC_INPUT_METHODS_MENU 46300 // Linux only
kpschoedelf8e9274e2014-10-07 18:32:41255#define IDC_TOUCH_HUD_PROJECTION_TOGGLE 46400 // ChromeOS only
[email protected]1a3aba82010-11-08 23:52:54256
[email protected]a146532b2014-07-30 11:20:09257// The range of command ids reserved for context menus added by web content.
[email protected]1a3aba82010-11-08 23:52:54258#define IDC_CONTENT_CONTEXT_CUSTOM_FIRST 47000
259#define IDC_CONTENT_CONTEXT_CUSTOM_LAST 48000
260
[email protected]a146532b2014-07-30 11:20:09261// The range of command ids reserved for context menus added by extensions.
[email protected]1a3aba82010-11-08 23:52:54262#define IDC_EXTENSIONS_CONTEXT_CUSTOM_FIRST 49000
263#define IDC_EXTENSIONS_CONTEXT_CUSTOM_LAST 50000
264
265// Context menu items in the render view.
266// Link items.
267#define IDC_CONTENT_CONTEXT_OPENLINKNEWTAB 50100
268#define IDC_CONTENT_CONTEXT_OPENLINKNEWWINDOW 50101
269#define IDC_CONTENT_CONTEXT_OPENLINKOFFTHERECORD 50102
270#define IDC_CONTENT_CONTEXT_SAVELINKAS 50103
271#define IDC_CONTENT_CONTEXT_COPYLINKLOCATION 50104
272#define IDC_CONTENT_CONTEXT_COPYEMAILADDRESS 50105
[email protected]88fb6a62011-06-27 04:07:57273#define IDC_CONTENT_CONTEXT_OPENLINKWITH 50106
[email protected]1a3aba82010-11-08 23:52:54274// Image items.
275#define IDC_CONTENT_CONTEXT_SAVEIMAGEAS 50110
276#define IDC_CONTENT_CONTEXT_COPYIMAGELOCATION 50111
277#define IDC_CONTENT_CONTEXT_COPYIMAGE 50112
278#define IDC_CONTENT_CONTEXT_OPENIMAGENEWTAB 50113
[email protected]be979242013-08-06 17:24:49279#define IDC_CONTENT_CONTEXT_SEARCHWEBFORIMAGE 50114
kundajif28021f2015-02-24 01:27:04280#define IDC_CONTENT_CONTEXT_OPEN_ORIGINAL_IMAGE_NEW_TAB 50115
megjablonbe80cf72015-06-13 03:34:54281#define IDC_CONTENT_CONTEXT_LOAD_ORIGINAL_IMAGE 50116
[email protected]1a3aba82010-11-08 23:52:54282// Audio/video items.
283#define IDC_CONTENT_CONTEXT_SAVEAVAS 50120
284#define IDC_CONTENT_CONTEXT_COPYAVLOCATION 50121
285#define IDC_CONTENT_CONTEXT_OPENAVNEWTAB 50122
286// Media items.
287#define IDC_CONTENT_CONTEXT_PLAYPAUSE 50130
288#define IDC_CONTENT_CONTEXT_MUTE 50131
289#define IDC_CONTENT_CONTEXT_LOOP 50132
290#define IDC_CONTENT_CONTEXT_CONTROLS 50133
[email protected]81375e872012-01-11 21:40:36291#define IDC_CONTENT_CONTEXT_ROTATECW 50134
292#define IDC_CONTENT_CONTEXT_ROTATECCW 50135
[email protected]1a3aba82010-11-08 23:52:54293// Edit items.
294#define IDC_CONTENT_CONTEXT_COPY 50140
295#define IDC_CONTENT_CONTEXT_CUT 50141
296#define IDC_CONTENT_CONTEXT_PASTE 50142
297#define IDC_CONTENT_CONTEXT_DELETE 50143
298#define IDC_CONTENT_CONTEXT_UNDO 50144
299#define IDC_CONTENT_CONTEXT_REDO 50145
300#define IDC_CONTENT_CONTEXT_SELECTALL 50146
[email protected]44bf7002011-10-16 02:46:15301#define IDC_CONTENT_CONTEXT_PASTE_AND_MATCH_STYLE 50147
[email protected]1a3aba82010-11-08 23:52:54302// Other items.
303#define IDC_CONTENT_CONTEXT_TRANSLATE 50150
304#define IDC_CONTENT_CONTEXT_INSPECTELEMENT 50151
305#define IDC_CONTENT_CONTEXT_VIEWPAGEINFO 50152
306#define IDC_CONTENT_CONTEXT_LANGUAGE_SETTINGS 50153
andybons6fd52e312015-07-21 15:48:12307#define IDC_CONTENT_CONTEXT_LOOK_UP 50154
[email protected]0c696612011-06-25 04:29:08308#define IDC_CONTENT_CONTEXT_NO_SPELLING_SUGGESTIONS 50155
[email protected]c8a72662011-09-05 09:26:08309#define IDC_CONTENT_CONTEXT_SPELLING_SUGGESTION 50156
[email protected]f2a43512011-11-01 11:23:35310#define IDC_CONTENT_CONTEXT_SPELLING_TOGGLE 50157
[email protected]f3768f62012-03-14 06:58:23311#define IDC_CONTENT_CONTEXT_SPEECH_MENU 50158
312#define IDC_CONTENT_CONTEXT_SPEECH_START_SPEAKING 50159
313#define IDC_CONTENT_CONTEXT_SPEECH_STOP_SPEAKING 50160
[email protected]65992d52012-09-19 23:05:31314#define IDC_CONTENT_CONTEXT_INSPECTBACKGROUNDPAGE 50161
[email protected]671c9702012-09-27 07:51:19315#define IDC_CONTENT_CONTEXT_RELOAD_PACKAGED_APP 50162
[email protected]32b36c62012-10-24 05:37:41316#define IDC_CONTENT_CONTEXT_RESTART_PACKAGED_APP 50163
[email protected]139a0b712012-12-18 09:45:26317#define IDC_CONTENT_CONTEXT_AUTOCORRECT_SPELLING_TOGGLE 50164
msramek1cceccd2015-05-26 11:27:52318#define IDC_CONTENT_CONTEXT_FORCESAVEPASSWORD 50165
[email protected]1a3aba82010-11-08 23:52:54319// Frame items.
[email protected]27cd1e62012-03-26 20:19:53320#define IDC_CONTENT_CONTEXT_RELOADFRAME 50170
321#define IDC_CONTENT_CONTEXT_VIEWFRAMESOURCE 50171
322#define IDC_CONTENT_CONTEXT_VIEWFRAMEINFO 50172
[email protected]1a3aba82010-11-08 23:52:54323// Search items.
[email protected]27cd1e62012-03-26 20:19:53324#define IDC_CONTENT_CONTEXT_GOTOURL 50180
325#define IDC_CONTENT_CONTEXT_SEARCHWEBFOR 50181
326#define IDC_CONTENT_CONTEXT_ADDSEARCHENGINE 50182
[email protected]4aa0dea2010-12-09 01:51:03327
328// Context menu items in the bookmark bar
329#define IDC_BOOKMARK_BAR_OPEN_ALL 51000
330#define IDC_BOOKMARK_BAR_OPEN_ALL_NEW_WINDOW 51001
331#define IDC_BOOKMARK_BAR_OPEN_ALL_INCOGNITO 51002
332#define IDC_BOOKMARK_BAR_OPEN_INCOGNITO 51003
333#define IDC_BOOKMARK_BAR_RENAME_FOLDER 51004
334#define IDC_BOOKMARK_BAR_EDIT 51005
335#define IDC_BOOKMARK_BAR_REMOVE 51006
336#define IDC_BOOKMARK_BAR_ADD_NEW_BOOKMARK 51007
337#define IDC_BOOKMARK_BAR_NEW_FOLDER 51008
338#define IDC_BOOKMARK_MANAGER 51009
339#define IDC_BOOKMARK_BAR_ALWAYS_SHOW 51010
[email protected]0955ce32013-03-05 19:40:40340#define IDC_BOOKMARK_BAR_SHOW_APPS_SHORTCUT 51011
[email protected]fd77aee2013-12-07 02:57:16341#define IDC_BOOKMARK_BAR_UNDO 51012
342#define IDC_BOOKMARK_BAR_REDO 51013
[email protected]e169ada2014-06-16 01:42:19343#define IDC_BOOKMARK_BAR_SHOW_MANAGED_BOOKMARKS 51014
[email protected]e7e637e2011-05-13 20:49:49344
345// Context menu items in the status tray
346#define IDC_STATUS_TRAY_KEEP_CHROME_RUNNING_IN_BACKGROUND 51100
[email protected]057569b2011-06-14 01:44:32347
apaciblee3aa66652015-07-23 22:18:24348// Context menu items for media router
349#define IDC_MEDIA_ROUTER_ABOUT 51200
350#define IDC_MEDIA_ROUTER_HELP 51201
351#define IDC_MEDIA_ROUTER_LEARN_MORE 51202
352#define IDC_MEDIA_ROUTER_REPORT_ISSUE 51203
353
[email protected]c993cd62012-05-03 20:01:59354// Context menu items for media stream status tray
355#define IDC_MEDIA_STREAM_DEVICE_STATUS_TRAY 51300
356#define IDC_MEDIA_CONTEXT_MEDIA_STREAM_CAPTURE_LIST_FIRST 51301
357#define IDC_MEDIA_CONTEXT_MEDIA_STREAM_CAPTURE_LIST_LAST 51399
[email protected]4afde5c2012-06-25 17:00:53358#define IDC_MEDIA_STREAM_DEVICE_ALWAYS_ALLOW 51400
[email protected]c993cd62012-05-03 20:01:59359
[email protected]88fb6a62011-06-27 04:07:57360// Protocol handler menu entries
361#define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000
362#define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199
363#define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200
364
365// NOTE: The last valid command value is 57343 (0xDFFF)
366// See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx
367
sky80d99732015-03-31 01:03:35368// Starting command id for menus showing bookmarks (such as the wrench menu).
369// While command ids passed to Windows functions must not be higher than 0xDFFF,
370// these IDs are not exposed to the native system and thus can be in this
371// otherwise-reserved range. No command used in a menu (such as the wrench menu)
372// should be higher than this, otherwise it'll conflict.
373#define IDC_FIRST_BOOKMARK_MENU 0xE000
374
[email protected]057569b2011-06-14 01:44:32375#endif // CHROME_APP_CHROME_COMMAND_IDS_H_