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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 #define IDC_FOCUS_LOCATION 39001 | 108 #define IDC_FOCUS_LOCATION 39001 |
109 #define IDC_FOCUS_SEARCH 39002 | 109 #define IDC_FOCUS_SEARCH 39002 |
110 #define IDC_FOCUS_MENU_BAR 39003 | 110 #define IDC_FOCUS_MENU_BAR 39003 |
111 #define IDC_FOCUS_NEXT_PANE 39004 | 111 #define IDC_FOCUS_NEXT_PANE 39004 |
112 #define IDC_FOCUS_PREVIOUS_PANE 39005 | 112 #define IDC_FOCUS_PREVIOUS_PANE 39005 |
113 #define IDC_FOCUS_BOOKMARKS 39006 | 113 #define IDC_FOCUS_BOOKMARKS 39006 |
114 #define IDC_FOCUS_INFOBARS 39007 | 114 #define IDC_FOCUS_INFOBARS 39007 |
115 | 115 |
116 // Show various bits of UI | 116 // Show various bits of UI |
117 #define IDC_OPEN_FILE 40000 | 117 #define IDC_OPEN_FILE 40000 |
118 #define IDC_CREATE_SHORTCUTS 40001 | |
119 #define IDC_CREATE_HOSTED_APP 40002 | 118 #define IDC_CREATE_HOSTED_APP 40002 |
120 #define IDC_DEVELOPER_MENU 40003 | 119 #define IDC_DEVELOPER_MENU 40003 |
121 #define IDC_DEV_TOOLS 40004 | 120 #define IDC_DEV_TOOLS 40004 |
122 #define IDC_DEV_TOOLS_CONSOLE 40005 | 121 #define IDC_DEV_TOOLS_CONSOLE 40005 |
123 #define IDC_TASK_MANAGER 40006 | 122 #define IDC_TASK_MANAGER 40006 |
124 #define IDC_DEV_TOOLS_DEVICES 40007 | 123 #define IDC_DEV_TOOLS_DEVICES 40007 |
125 #if defined(GOOGLE_CHROME_BUILD) | 124 #if defined(GOOGLE_CHROME_BUILD) |
126 #define IDC_FEEDBACK 40008 | 125 #define IDC_FEEDBACK 40008 |
127 #endif | 126 #endif |
128 #define IDC_SHOW_BOOKMARK_BAR 40009 | 127 #define IDC_SHOW_BOOKMARK_BAR 40009 |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 347 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
349 | 348 |
350 // Starting command id for menus showing bookmarks (such as the wrench menu). | 349 // Starting command id for menus showing bookmarks (such as the wrench menu). |
351 // While command ids passed to Windows functions must not be higher than 0xDFFF, | 350 // While command ids passed to Windows functions must not be higher than 0xDFFF, |
352 // these IDs are not exposed to the native system and thus can be in this | 351 // these IDs are not exposed to the native system and thus can be in this |
353 // otherwise-reserved range. No command used in a menu (such as the wrench menu) | 352 // otherwise-reserved range. No command used in a menu (such as the wrench menu) |
354 // should be higher than this, otherwise it'll conflict. | 353 // should be higher than this, otherwise it'll conflict. |
355 #define IDC_FIRST_BOOKMARK_MENU 0xE000 | 354 #define IDC_FIRST_BOOKMARK_MENU 0xE000 |
356 | 355 |
357 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 356 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
OLD | NEW |