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 19 matching lines...) Expand all Loading... |
30 #define IDC_HOME 33003 | 30 #define IDC_HOME 33003 |
31 #define IDC_OPEN_CURRENT_URL 33004 | 31 #define IDC_OPEN_CURRENT_URL 33004 |
32 #define IDC_STOP 33006 | 32 #define IDC_STOP 33006 |
33 #define IDC_RELOAD_IGNORING_CACHE 33007 | 33 #define IDC_RELOAD_IGNORING_CACHE 33007 |
34 #define IDC_LOAD_NEW_TAB_PAGE 33008 | 34 #define IDC_LOAD_NEW_TAB_PAGE 33008 |
35 #define IDC_RELOAD_CLEARING_CACHE 33009 | 35 #define IDC_RELOAD_CLEARING_CACHE 33009 |
36 | 36 |
37 // Window management commands | 37 // Window management commands |
38 #define IDC_NEW_WINDOW 34000 | 38 #define IDC_NEW_WINDOW 34000 |
39 #define IDC_NEW_INCOGNITO_WINDOW 34001 | 39 #define IDC_NEW_INCOGNITO_WINDOW 34001 |
40 #define IDC_METRO_PIN_TO_START_SCREEN 34005 | 40 #define IDC_PIN_TO_START_SCREEN 34005 |
41 #define IDC_CLOSE_WINDOW 34012 | 41 #define IDC_CLOSE_WINDOW 34012 |
42 #define IDC_ALWAYS_ON_TOP 34013 | 42 #define IDC_ALWAYS_ON_TOP 34013 |
43 #define IDC_NEW_TAB 34014 | 43 #define IDC_NEW_TAB 34014 |
44 #define IDC_CLOSE_TAB 34015 | 44 #define IDC_CLOSE_TAB 34015 |
45 #define IDC_SELECT_NEXT_TAB 34016 | 45 #define IDC_SELECT_NEXT_TAB 34016 |
46 #define IDC_SELECT_PREVIOUS_TAB 34017 | 46 #define IDC_SELECT_PREVIOUS_TAB 34017 |
47 #define IDC_SELECT_TAB_0 34018 | 47 #define IDC_SELECT_TAB_0 34018 |
48 #define IDC_SELECT_TAB_1 34019 | 48 #define IDC_SELECT_TAB_1 34019 |
49 #define IDC_SELECT_TAB_2 34020 | 49 #define IDC_SELECT_TAB_2 34020 |
50 #define IDC_SELECT_TAB_3 34021 | 50 #define IDC_SELECT_TAB_3 34021 |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 | 320 |
321 // Protocol handler menu entries | 321 // Protocol handler menu entries |
322 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 322 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
323 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 323 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
324 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 324 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
325 | 325 |
326 // NOTE: The last valid command value is 57343 (0xDFFF) | 326 // NOTE: The last valid command value is 57343 (0xDFFF) |
327 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 327 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
328 | 328 |
329 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 329 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
OLD | NEW |