| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 #define IDC_CUT 36000 | 132 #define IDC_CUT 36000 |
| 133 #define IDC_COPY 36001 | 133 #define IDC_COPY 36001 |
| 134 #define IDC_COPY_URL 36002 | 134 #define IDC_COPY_URL 36002 |
| 135 #define IDC_PASTE 36003 | 135 #define IDC_PASTE 36003 |
| 136 #define IDC_EDIT_MENU 36004 | 136 #define IDC_EDIT_MENU 36004 |
| 137 | 137 |
| 138 // Find-in-page | 138 // Find-in-page |
| 139 #define IDC_FIND 37000 | 139 #define IDC_FIND 37000 |
| 140 #define IDC_FIND_NEXT 37001 | 140 #define IDC_FIND_NEXT 37001 |
| 141 #define IDC_FIND_PREVIOUS 37002 | 141 #define IDC_FIND_PREVIOUS 37002 |
| 142 #define IDC_FIND_MENU 37100 |
| 142 | 143 |
| 143 // Zoom | 144 // Zoom |
| 144 #define IDC_ZOOM_MENU 38000 | 145 #define IDC_ZOOM_MENU 38000 |
| 145 #define IDC_ZOOM_PLUS 38001 | 146 #define IDC_ZOOM_PLUS 38001 |
| 146 #define IDC_ZOOM_NORMAL 38002 | 147 #define IDC_ZOOM_NORMAL 38002 |
| 147 #define IDC_ZOOM_MINUS 38003 | 148 #define IDC_ZOOM_MINUS 38003 |
| 148 #define IDC_ZOOM_PERCENT_DISPLAY 38004 | 149 #define IDC_ZOOM_PERCENT_DISPLAY 38004 |
| 149 | 150 |
| 150 // Focus various bits of UI | 151 // Focus various bits of UI |
| 151 #define IDC_FOCUS_TOOLBAR 39000 | 152 #define IDC_FOCUS_TOOLBAR 39000 |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 | 348 |
| 348 // Protocol handler menu entries | 349 // Protocol handler menu entries |
| 349 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 350 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
| 350 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 351 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
| 351 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 352 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
| 352 | 353 |
| 353 // NOTE: The last valid command value is 57343 (0xDFFF) | 354 // NOTE: The last valid command value is 57343 (0xDFFF) |
| 354 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 355 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
| 355 | 356 |
| 356 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 357 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |