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 // Do not use IDs below 40900 while the iOS build still depends on //chrome, to | 15 // Do not use IDs below 40900 while the iOS build still depends on //chrome, to |
16 // avoid conflicts. | 16 // avoid conflicts. |
17 // TODO(droger): Remove this comment once iOS no longer depends on //chrome. | 17 // TODO(droger): Remove this comment once iOS no longer depends on //chrome. |
18 #define IDC_SHOW_TOOLS_MENU 40900 | 18 #define IDC_SHOW_TOOLS_MENU 40900 |
19 #define IDC_TOGGLE_TAB_SWITCHER 40901 | 19 #define IDC_TOGGLE_TAB_SWITCHER 40901 |
20 #define IDC_VOICE_SEARCH 40902 | 20 #define IDC_VOICE_SEARCH 40902 |
21 #define IDC_NEW_INCOGNITO_TAB 40903 | 21 #define IDC_NEW_INCOGNITO_TAB 40903 |
22 #define IDC_CLOSE_ALL_TABS 40904 | 22 #define IDC_CLOSE_ALL_TABS 40904 |
23 #define IDC_SHOW_SIGNIN_IOS 40905 | 23 #define IDC_SHOW_SIGNIN_IOS 40905 |
24 #define IDC_SWITCH_BROWSER_MODES 40906 | 24 #define IDC_SWITCH_BROWSER_MODES 40906 |
25 #define IDC_FIND_CLOSE 40907 | 25 #define IDC_FIND_CLOSE 40907 |
26 #define IDC_FIND_UPDATE 40908 | 26 #define IDC_FIND_UPDATE 40908 |
| 27 #define IDC_CLOSE_MODALS 40909 |
27 #define IDC_SHOW_PAGE_INFO 40911 | 28 #define IDC_SHOW_PAGE_INFO 40911 |
28 #define IDC_HIDE_PAGE_INFO 40912 | 29 #define IDC_HIDE_PAGE_INFO 40912 |
29 #define IDC_SHOW_SECURITY_HELP 40913 | 30 #define IDC_SHOW_SECURITY_HELP 40913 |
30 #define IDC_SHOW_SYNC_SETTINGS 40914 | 31 #define IDC_SHOW_SYNC_SETTINGS 40914 |
31 #define IDC_OPEN_URL 40915 | 32 #define IDC_OPEN_URL 40915 |
32 #define IDC_SETUP_FOR_TESTING 40916 | 33 #define IDC_SETUP_FOR_TESTING 40916 |
33 #define IDC_SHOW_OTHER_DEVICES 40917 | 34 #define IDC_SHOW_OTHER_DEVICES 40917 |
34 #define IDC_CLOSE_ALL_INCOGNITO_TABS 40918 | 35 #define IDC_CLOSE_ALL_INCOGNITO_TABS 40918 |
35 #define IDC_CLOSE_SETTINGS_AND_OPEN_URL 40920 | 36 #define IDC_CLOSE_SETTINGS_AND_OPEN_URL 40920 |
36 #define IDC_REQUEST_DESKTOP_SITE 40921 | 37 #define IDC_REQUEST_DESKTOP_SITE 40921 |
(...skipping 17 matching lines...) Expand all Loading... |
54 #define IDC_SHOW_ACCOUNTS_SETTINGS 40943 | 55 #define IDC_SHOW_ACCOUNTS_SETTINGS 40943 |
55 #define IDC_CLOSE_SETTINGS 40944 | 56 #define IDC_CLOSE_SETTINGS 40944 |
56 #define IDC_SHOW_SAVE_PASSWORDS_SETTINGS 40945 | 57 #define IDC_SHOW_SAVE_PASSWORDS_SETTINGS 40945 |
57 #define IDC_READER_MODE 40947 | 58 #define IDC_READER_MODE 40947 |
58 #define IDC_RATE_THIS_APP 40948 | 59 #define IDC_RATE_THIS_APP 40948 |
59 // Do not use IDs above 40999 while the iOS build still depends on //chrome, to | 60 // Do not use IDs above 40999 while the iOS build still depends on //chrome, to |
60 // avoid conflicts. | 61 // avoid conflicts. |
61 // TODO(droger): Remove this comment once iOS no longer depends on //chrome. | 62 // TODO(droger): Remove this comment once iOS no longer depends on //chrome. |
62 | 63 |
63 #endif // IOS_CHROME_BROWSER_UI_COMMANDS_IOS_COMMAND_IDS_H_ | 64 #endif // IOS_CHROME_BROWSER_UI_COMMANDS_IOS_COMMAND_IDS_H_ |
OLD | NEW |