| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 // This file lists all the command IDs understood by e.g. the browser. | 9 // This file lists all the command IDs understood by e.g. the browser. |
| 10 // It is used by Windows RC files, Mac NIB files, and other platforms too. | 10 // It is used by Windows RC files, Mac NIB files, and other platforms too. |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 #define IDC_ZOOM_PERCENT_DISPLAY 38004 | 132 #define IDC_ZOOM_PERCENT_DISPLAY 38004 |
| 133 | 133 |
| 134 // Focus various bits of UI | 134 // Focus various bits of UI |
| 135 #define IDC_FOCUS_TOOLBAR 39000 | 135 #define IDC_FOCUS_TOOLBAR 39000 |
| 136 #define IDC_FOCUS_LOCATION 39001 | 136 #define IDC_FOCUS_LOCATION 39001 |
| 137 #define IDC_FOCUS_SEARCH 39002 | 137 #define IDC_FOCUS_SEARCH 39002 |
| 138 #define IDC_FOCUS_MENU_BAR 39003 | 138 #define IDC_FOCUS_MENU_BAR 39003 |
| 139 #define IDC_FOCUS_NEXT_PANE 39004 | 139 #define IDC_FOCUS_NEXT_PANE 39004 |
| 140 #define IDC_FOCUS_PREVIOUS_PANE 39005 | 140 #define IDC_FOCUS_PREVIOUS_PANE 39005 |
| 141 #define IDC_FOCUS_BOOKMARKS 39006 | 141 #define IDC_FOCUS_BOOKMARKS 39006 |
| 142 #define IDC_FOCUS_CHROMEOS_STATUS 39007 | |
| 143 | 142 |
| 144 // Show various bits of UI | 143 // Show various bits of UI |
| 145 #define IDC_OPEN_FILE 40000 | 144 #define IDC_OPEN_FILE 40000 |
| 146 #define IDC_CREATE_SHORTCUTS 40001 | 145 #define IDC_CREATE_SHORTCUTS 40001 |
| 147 #define IDC_DEVELOPER_MENU 40002 | 146 #define IDC_DEVELOPER_MENU 40002 |
| 148 #define IDC_DEV_TOOLS 40003 | 147 #define IDC_DEV_TOOLS 40003 |
| 149 #define IDC_DEV_TOOLS_CONSOLE 40004 | 148 #define IDC_DEV_TOOLS_CONSOLE 40004 |
| 150 #define IDC_TASK_MANAGER 40005 | 149 #define IDC_TASK_MANAGER 40005 |
| 151 #define IDC_FEEDBACK 40008 | 150 #define IDC_FEEDBACK 40008 |
| 152 #define IDC_SHOW_BOOKMARK_BAR 40009 | 151 #define IDC_SHOW_BOOKMARK_BAR 40009 |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 | 311 |
| 313 // Protocol handler menu entries | 312 // Protocol handler menu entries |
| 314 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 313 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
| 315 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 314 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
| 316 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 315 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
| 317 | 316 |
| 318 // NOTE: The last valid command value is 57343 (0xDFFF) | 317 // NOTE: The last valid command value is 57343 (0xDFFF) |
| 319 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 318 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
| 320 | 319 |
| 321 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 320 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |