| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 #define IDC_CONTENT_CONTEXT_OPENIMAGENEWTAB 50113 | 247 #define IDC_CONTENT_CONTEXT_OPENIMAGENEWTAB 50113 |
| 248 // Audio/video items. | 248 // Audio/video items. |
| 249 #define IDC_CONTENT_CONTEXT_SAVEAVAS 50120 | 249 #define IDC_CONTENT_CONTEXT_SAVEAVAS 50120 |
| 250 #define IDC_CONTENT_CONTEXT_COPYAVLOCATION 50121 | 250 #define IDC_CONTENT_CONTEXT_COPYAVLOCATION 50121 |
| 251 #define IDC_CONTENT_CONTEXT_OPENAVNEWTAB 50122 | 251 #define IDC_CONTENT_CONTEXT_OPENAVNEWTAB 50122 |
| 252 // Media items. | 252 // Media items. |
| 253 #define IDC_CONTENT_CONTEXT_PLAYPAUSE 50130 | 253 #define IDC_CONTENT_CONTEXT_PLAYPAUSE 50130 |
| 254 #define IDC_CONTENT_CONTEXT_MUTE 50131 | 254 #define IDC_CONTENT_CONTEXT_MUTE 50131 |
| 255 #define IDC_CONTENT_CONTEXT_LOOP 50132 | 255 #define IDC_CONTENT_CONTEXT_LOOP 50132 |
| 256 #define IDC_CONTENT_CONTEXT_CONTROLS 50133 | 256 #define IDC_CONTENT_CONTEXT_CONTROLS 50133 |
| 257 #define IDC_CONTENT_CONTEXT_ROTATECW 50134 |
| 258 #define IDC_CONTENT_CONTEXT_ROTATECCW 50135 |
| 257 // Edit items. | 259 // Edit items. |
| 258 #define IDC_CONTENT_CONTEXT_COPY 50140 | 260 #define IDC_CONTENT_CONTEXT_COPY 50140 |
| 259 #define IDC_CONTENT_CONTEXT_CUT 50141 | 261 #define IDC_CONTENT_CONTEXT_CUT 50141 |
| 260 #define IDC_CONTENT_CONTEXT_PASTE 50142 | 262 #define IDC_CONTENT_CONTEXT_PASTE 50142 |
| 261 #define IDC_CONTENT_CONTEXT_DELETE 50143 | 263 #define IDC_CONTENT_CONTEXT_DELETE 50143 |
| 262 #define IDC_CONTENT_CONTEXT_UNDO 50144 | 264 #define IDC_CONTENT_CONTEXT_UNDO 50144 |
| 263 #define IDC_CONTENT_CONTEXT_REDO 50145 | 265 #define IDC_CONTENT_CONTEXT_REDO 50145 |
| 264 #define IDC_CONTENT_CONTEXT_SELECTALL 50146 | 266 #define IDC_CONTENT_CONTEXT_SELECTALL 50146 |
| 265 #define IDC_CONTENT_CONTEXT_PASTE_AND_MATCH_STYLE 50147 | 267 #define IDC_CONTENT_CONTEXT_PASTE_AND_MATCH_STYLE 50147 |
| 266 // Other items. | 268 // Other items. |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 | 306 |
| 305 // Protocol handler menu entries | 307 // Protocol handler menu entries |
| 306 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 308 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
| 307 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 309 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
| 308 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 310 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
| 309 | 311 |
| 310 // NOTE: The last valid command value is 57343 (0xDFFF) | 312 // NOTE: The last valid command value is 57343 (0xDFFF) |
| 311 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 313 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
| 312 | 314 |
| 313 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 315 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |