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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 #define IDC_SHOW_AS_TAB 34029 | 52 #define IDC_SHOW_AS_TAB 34029 |
53 #define IDC_FULLSCREEN 34030 | 53 #define IDC_FULLSCREEN 34030 |
54 #define IDC_EXIT 34031 | 54 #define IDC_EXIT 34031 |
55 #define IDC_MOVE_TAB_NEXT 34032 | 55 #define IDC_MOVE_TAB_NEXT 34032 |
56 #define IDC_MOVE_TAB_PREVIOUS 34033 | 56 #define IDC_MOVE_TAB_PREVIOUS 34033 |
57 #define IDC_TOGGLE_VERTICAL_TABS 34034 | 57 #define IDC_TOGGLE_VERTICAL_TABS 34034 |
58 #define IDC_SEARCH 34035 | 58 #define IDC_SEARCH 34035 |
59 #define IDC_TABPOSE 34036 | 59 #define IDC_TABPOSE 34036 |
60 #define IDC_COMPACT_NAVBAR 34037 | 60 #define IDC_COMPACT_NAVBAR 34037 |
61 #define IDC_DEBUG_FRAME_TOGGLE 34038 | 61 #define IDC_DEBUG_FRAME_TOGGLE 34038 |
| 62 #define IDC_PRESENTATION_MODE 34039 |
62 | 63 |
63 // Page-related commands | 64 // Page-related commands |
64 #define IDC_BOOKMARK_PAGE 35000 | 65 #define IDC_BOOKMARK_PAGE 35000 |
65 #define IDC_BOOKMARK_ALL_TABS 35001 | 66 #define IDC_BOOKMARK_ALL_TABS 35001 |
66 #define IDC_VIEW_SOURCE 35002 | 67 #define IDC_VIEW_SOURCE 35002 |
67 #define IDC_PRINT 35003 | 68 #define IDC_PRINT 35003 |
68 #define IDC_SAVE_PAGE 35004 | 69 #define IDC_SAVE_PAGE 35004 |
69 #define IDC_ENCODING_MENU 35005 | 70 #define IDC_ENCODING_MENU 35005 |
70 #define IDC_EMAIL_PAGE_LOCATION 35006 | 71 #define IDC_EMAIL_PAGE_LOCATION 35006 |
71 | 72 |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 | 293 |
293 // Protocol handler menu entries | 294 // Protocol handler menu entries |
294 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 295 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
295 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 296 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
296 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 297 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
297 | 298 |
298 // NOTE: The last valid command value is 57343 (0xDFFF) | 299 // NOTE: The last valid command value is 57343 (0xDFFF) |
299 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 300 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
300 | 301 |
301 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 302 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
OLD | NEW |