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 IOS_CHROME_BROWSER_UI_COMMANDS_IOS_COMMAND_IDS_H_ | 5 #ifndef IOS_CHROME_BROWSER_UI_COMMANDS_IOS_COMMAND_IDS_H_ |
6 #define IOS_CHROME_BROWSER_UI_COMMANDS_IOS_COMMAND_IDS_H_ | 6 #define IOS_CHROME_BROWSER_UI_COMMANDS_IOS_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 NIB files. | 9 // It is used by NIB files. |
10 | 10 |
11 // NIB files include ID numbers rather than the corresponding #define labels. | 11 // NIB files include ID numbers rather than the corresponding #define labels. |
12 // If you change a given command's number, any NIB files that refer to it will | 12 // If you change a given command's number, any NIB files that refer to it will |
13 // also need to be updated. | 13 // also need to be updated. |
14 | 14 |
15 // clang-format off | 15 // clang-format off |
16 #define IDC_RELOAD 33002 | 16 #define IDC_RELOAD 33002 |
17 #define IDC_NEW_TAB 34014 | 17 #define IDC_NEW_TAB 34014 |
18 #define IDC_FULLSCREEN 34030 | 18 #define IDC_FULLSCREEN 34030 |
19 #define IDC_VIEW_SOURCE 35002 | 19 #define IDC_VIEW_SOURCE 35002 |
20 #define IDC_PRINT 35003 | 20 #define IDC_PRINT 35003 |
21 #define IDC_FIND 37000 | 21 #define IDC_FIND 37000 |
22 #define IDC_FIND_NEXT 37001 | 22 #define IDC_FIND_NEXT 37001 |
23 #define IDC_FIND_PREVIOUS 37002 | 23 #define IDC_FIND_PREVIOUS 37002 |
24 #define IDC_SHOW_HISTORY 40010 | 24 #define IDC_SHOW_HISTORY 40010 |
25 #define IDC_SHOW_BOOKMARK_MANAGER 40011 | 25 #define IDC_SHOW_BOOKMARK_MANAGER 40011 |
26 #define IDC_OPTIONS 40015 | 26 #define IDC_OPTIONS 40015 |
27 #define IDC_HELP_PAGE_VIA_MENU 40020 | 27 #define IDC_HELP_PAGE_VIA_MENU 40020 |
28 #define IDC_SHOW_TOOLS_MENU 40900 | |
29 #define IDC_TOGGLE_TAB_SWITCHER 40901 | 28 #define IDC_TOGGLE_TAB_SWITCHER 40901 |
30 #define IDC_VOICE_SEARCH 40902 | 29 #define IDC_VOICE_SEARCH 40902 |
31 #define IDC_NEW_INCOGNITO_TAB 40903 | 30 #define IDC_NEW_INCOGNITO_TAB 40903 |
32 #define IDC_CLOSE_ALL_TABS 40904 | 31 #define IDC_CLOSE_ALL_TABS 40904 |
33 #define IDC_SHOW_SIGNIN_IOS 40905 | 32 #define IDC_SHOW_SIGNIN_IOS 40905 |
34 #define IDC_SWITCH_BROWSER_MODES 40906 | 33 #define IDC_SWITCH_BROWSER_MODES 40906 |
35 #define IDC_FIND_CLOSE 40907 | 34 #define IDC_FIND_CLOSE 40907 |
36 #define IDC_FIND_UPDATE 40908 | 35 #define IDC_FIND_UPDATE 40908 |
37 #define IDC_CLOSE_MODALS 40909 | 36 #define IDC_CLOSE_MODALS 40909 |
38 #define IDC_SHOW_ADD_ACCOUNT 40910 | 37 #define IDC_SHOW_ADD_ACCOUNT 40910 |
(...skipping 27 matching lines...) Expand all Loading... |
66 #define IDC_RATE_THIS_APP 40948 | 65 #define IDC_RATE_THIS_APP 40948 |
67 #define IDC_ADD_READING_LIST 40949 | 66 #define IDC_ADD_READING_LIST 40949 |
68 #define IDC_SHOW_READING_LIST 40950 | 67 #define IDC_SHOW_READING_LIST 40950 |
69 #define IDC_SHOW_CLEAR_BROWSING_DATA_SETTINGS 40951 | 68 #define IDC_SHOW_CLEAR_BROWSING_DATA_SETTINGS 40951 |
70 #define IDC_SHOW_SYNC_PASSPHRASE_SETTINGS 40952 | 69 #define IDC_SHOW_SYNC_PASSPHRASE_SETTINGS 40952 |
71 #define IDC_SHOW_QR_SCANNER 40953 | 70 #define IDC_SHOW_QR_SCANNER 40953 |
72 #define IDC_SHOW_AUTOFILL_SETTINGS 40956 | 71 #define IDC_SHOW_AUTOFILL_SETTINGS 40956 |
73 // clang-format on | 72 // clang-format on |
74 | 73 |
75 #endif // IOS_CHROME_BROWSER_UI_COMMANDS_IOS_COMMAND_IDS_H_ | 74 #endif // IOS_CHROME_BROWSER_UI_COMMANDS_IOS_COMMAND_IDS_H_ |
OLD | NEW |