| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 #define IDC_ENCODING_ISO88596 35532 | 118 #define IDC_ENCODING_ISO88596 35532 |
| 119 #define IDC_ENCODING_WINDOWS1256 35533 | 119 #define IDC_ENCODING_WINDOWS1256 35533 |
| 120 #define IDC_ENCODING_ISO88598 35534 | 120 #define IDC_ENCODING_ISO88598 35534 |
| 121 #define IDC_ENCODING_WINDOWS1255 35535 | 121 #define IDC_ENCODING_WINDOWS1255 35535 |
| 122 #define IDC_ENCODING_WINDOWS1258 35536 | 122 #define IDC_ENCODING_WINDOWS1258 35536 |
| 123 #define IDC_ENCODING_ISO88598I 35537 | 123 #define IDC_ENCODING_ISO88598I 35537 |
| 124 | 124 |
| 125 // Clipboard commands | 125 // Clipboard commands |
| 126 #define IDC_CUT 36000 | 126 #define IDC_CUT 36000 |
| 127 #define IDC_COPY 36001 | 127 #define IDC_COPY 36001 |
| 128 #define IDC_COPY_URL 36002 |
| 128 #define IDC_PASTE 36003 | 129 #define IDC_PASTE 36003 |
| 129 #define IDC_EDIT_MENU 36004 | 130 #define IDC_EDIT_MENU 36004 |
| 130 | 131 |
| 131 // Find-in-page | 132 // Find-in-page |
| 132 #define IDC_FIND 37000 | 133 #define IDC_FIND 37000 |
| 133 #define IDC_FIND_NEXT 37001 | 134 #define IDC_FIND_NEXT 37001 |
| 134 #define IDC_FIND_PREVIOUS 37002 | 135 #define IDC_FIND_PREVIOUS 37002 |
| 135 | 136 |
| 136 // Zoom | 137 // Zoom |
| 137 #define IDC_ZOOM_MENU 38000 | 138 #define IDC_ZOOM_MENU 38000 |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 | 323 |
| 323 // Protocol handler menu entries | 324 // Protocol handler menu entries |
| 324 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 325 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
| 325 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 326 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
| 326 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 327 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
| 327 | 328 |
| 328 // NOTE: The last valid command value is 57343 (0xDFFF) | 329 // NOTE: The last valid command value is 57343 (0xDFFF) |
| 329 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 330 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
| 330 | 331 |
| 331 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 332 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |