| 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 29 matching lines...) Expand all Loading... |
| 40 #define IDC_SELECT_PREVIOUS_TAB 34017 | 40 #define IDC_SELECT_PREVIOUS_TAB 34017 |
| 41 #define IDC_SELECT_TAB_0 34018 | 41 #define IDC_SELECT_TAB_0 34018 |
| 42 #define IDC_SELECT_TAB_1 34019 | 42 #define IDC_SELECT_TAB_1 34019 |
| 43 #define IDC_SELECT_TAB_2 34020 | 43 #define IDC_SELECT_TAB_2 34020 |
| 44 #define IDC_SELECT_TAB_3 34021 | 44 #define IDC_SELECT_TAB_3 34021 |
| 45 #define IDC_SELECT_TAB_4 34022 | 45 #define IDC_SELECT_TAB_4 34022 |
| 46 #define IDC_SELECT_TAB_5 34023 | 46 #define IDC_SELECT_TAB_5 34023 |
| 47 #define IDC_SELECT_TAB_6 34024 | 47 #define IDC_SELECT_TAB_6 34024 |
| 48 #define IDC_SELECT_TAB_7 34025 | 48 #define IDC_SELECT_TAB_7 34025 |
| 49 #define IDC_SELECT_LAST_TAB 34026 | 49 #define IDC_SELECT_LAST_TAB 34026 |
| 50 #define IDC_DUPLICATE_TAB 34027 | 50 #define IDC_SELECT_NEXT_MRU_TAB 34027 |
| 51 #define IDC_RESTORE_TAB 34028 | 51 #define IDC_DUPLICATE_TAB 34028 |
| 52 #define IDC_SHOW_AS_TAB 34029 | 52 #define IDC_RESTORE_TAB 34029 |
| 53 #define IDC_FULLSCREEN 34030 | 53 #define IDC_SHOW_AS_TAB 34030 |
| 54 #define IDC_EXIT 34031 | 54 #define IDC_FULLSCREEN 34031 |
| 55 #define IDC_MOVE_TAB_NEXT 34032 | 55 #define IDC_EXIT 34032 |
| 56 #define IDC_MOVE_TAB_PREVIOUS 34033 | 56 #define IDC_MOVE_TAB_NEXT 34033 |
| 57 #define IDC_MOVE_TAB_PREVIOUS 34034 |
| 57 #define IDC_SEARCH 34035 | 58 #define IDC_SEARCH 34035 |
| 58 #define IDC_TABPOSE 34036 | 59 #define IDC_TABPOSE 34036 |
| 59 #define IDC_DEBUG_FRAME_TOGGLE 34038 | 60 #define IDC_DEBUG_FRAME_TOGGLE 34038 |
| 60 #define IDC_PRESENTATION_MODE 34039 | 61 #define IDC_PRESENTATION_MODE 34039 |
| 61 | 62 |
| 62 // Page-related commands | 63 // Page-related commands |
| 63 #define IDC_BOOKMARK_PAGE 35000 | 64 #define IDC_BOOKMARK_PAGE 35000 |
| 64 #define IDC_BOOKMARK_ALL_TABS 35001 | 65 #define IDC_BOOKMARK_ALL_TABS 35001 |
| 65 #define IDC_VIEW_SOURCE 35002 | 66 #define IDC_VIEW_SOURCE 35002 |
| 66 #define IDC_PRINT 35003 | 67 #define IDC_PRINT 35003 |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 | 311 |
| 311 // Protocol handler menu entries | 312 // Protocol handler menu entries |
| 312 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 313 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
| 313 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 314 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
| 314 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 315 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
| 315 | 316 |
| 316 // NOTE: The last valid command value is 57343 (0xDFFF) | 317 // NOTE: The last valid command value is 57343 (0xDFFF) |
| 317 // 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 |
| 318 | 319 |
| 319 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 320 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |