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