OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CHROME_APP_CHROME_COMMAND_IDS_H_ | 5 #ifndef CHROME_APP_CHROME_COMMAND_IDS_H_ |
6 #define CHROME_APP_CHROME_COMMAND_IDS_H_ | 6 #define CHROME_APP_CHROME_COMMAND_IDS_H_ |
7 | 7 |
8 // This file lists all the command IDs understood by e.g. the browser. | 8 // 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. | 9 // It is used by Windows RC files, Mac NIB files, and other platforms too. |
10 | 10 |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 #define IDC_ZOOM_PERCENT_DISPLAY 38004 | 145 #define IDC_ZOOM_PERCENT_DISPLAY 38004 |
146 | 146 |
147 // Focus various bits of UI | 147 // Focus various bits of UI |
148 #define IDC_FOCUS_TOOLBAR 39000 | 148 #define IDC_FOCUS_TOOLBAR 39000 |
149 #define IDC_FOCUS_LOCATION 39001 | 149 #define IDC_FOCUS_LOCATION 39001 |
150 #define IDC_FOCUS_SEARCH 39002 | 150 #define IDC_FOCUS_SEARCH 39002 |
151 #define IDC_FOCUS_MENU_BAR 39003 | 151 #define IDC_FOCUS_MENU_BAR 39003 |
152 #define IDC_FOCUS_NEXT_PANE 39004 | 152 #define IDC_FOCUS_NEXT_PANE 39004 |
153 #define IDC_FOCUS_PREVIOUS_PANE 39005 | 153 #define IDC_FOCUS_PREVIOUS_PANE 39005 |
154 #define IDC_FOCUS_BOOKMARKS 39006 | 154 #define IDC_FOCUS_BOOKMARKS 39006 |
| 155 #define IDC_FOCUS_INFOBARS 39007 |
155 | 156 |
156 // Show various bits of UI | 157 // Show various bits of UI |
157 #define IDC_OPEN_FILE 40000 | 158 #define IDC_OPEN_FILE 40000 |
158 #define IDC_CREATE_SHORTCUTS 40001 | 159 #define IDC_CREATE_SHORTCUTS 40001 |
159 #define IDC_DEVELOPER_MENU 40002 | 160 #define IDC_DEVELOPER_MENU 40002 |
160 #define IDC_DEV_TOOLS 40003 | 161 #define IDC_DEV_TOOLS 40003 |
161 #define IDC_DEV_TOOLS_CONSOLE 40004 | 162 #define IDC_DEV_TOOLS_CONSOLE 40004 |
162 #define IDC_TASK_MANAGER 40005 | 163 #define IDC_TASK_MANAGER 40005 |
163 #define IDC_FEEDBACK 40008 | 164 #define IDC_FEEDBACK 40008 |
164 #define IDC_SHOW_BOOKMARK_BAR 40009 | 165 #define IDC_SHOW_BOOKMARK_BAR 40009 |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 | 344 |
344 // Protocol handler menu entries | 345 // Protocol handler menu entries |
345 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 346 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
346 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 347 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
347 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 348 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
348 | 349 |
349 // NOTE: The last valid command value is 57343 (0xDFFF) | 350 // NOTE: The last valid command value is 57343 (0xDFFF) |
350 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 351 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
351 | 352 |
352 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 353 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
OLD | NEW |