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_BACK 33000 | 16 #define IDC_BACK 33000 |
17 #define IDC_FORWARD 33001 | 17 #define IDC_FORWARD 33001 |
18 #define IDC_RELOAD 33002 | 18 #define IDC_RELOAD 33002 |
19 #define IDC_STOP 33006 | 19 #define IDC_STOP 33006 |
20 #define IDC_NEW_TAB 34014 | 20 #define IDC_NEW_TAB 34014 |
21 #define IDC_CLOSE_TAB 34015 | |
22 #define IDC_FULLSCREEN 34030 | 21 #define IDC_FULLSCREEN 34030 |
23 #define IDC_BOOKMARK_PAGE 35000 | 22 #define IDC_BOOKMARK_PAGE 35000 |
24 #define IDC_VIEW_SOURCE 35002 | 23 #define IDC_VIEW_SOURCE 35002 |
25 #define IDC_PRINT 35003 | 24 #define IDC_PRINT 35003 |
26 #define IDC_FIND 37000 | 25 #define IDC_FIND 37000 |
27 #define IDC_FIND_NEXT 37001 | 26 #define IDC_FIND_NEXT 37001 |
28 #define IDC_FIND_PREVIOUS 37002 | 27 #define IDC_FIND_PREVIOUS 37002 |
29 #define IDC_SHOW_HISTORY 40010 | 28 #define IDC_SHOW_HISTORY 40010 |
30 #define IDC_SHOW_BOOKMARK_MANAGER 40011 | 29 #define IDC_SHOW_BOOKMARK_MANAGER 40011 |
31 #define IDC_OPTIONS 40015 | 30 #define IDC_OPTIONS 40015 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 #define IDC_RATE_THIS_APP 40948 | 71 #define IDC_RATE_THIS_APP 40948 |
73 #define IDC_ADD_READING_LIST 40949 | 72 #define IDC_ADD_READING_LIST 40949 |
74 #define IDC_SHOW_READING_LIST 40950 | 73 #define IDC_SHOW_READING_LIST 40950 |
75 #define IDC_SHOW_CLEAR_BROWSING_DATA_SETTINGS 40951 | 74 #define IDC_SHOW_CLEAR_BROWSING_DATA_SETTINGS 40951 |
76 #define IDC_SHOW_SYNC_PASSPHRASE_SETTINGS 40952 | 75 #define IDC_SHOW_SYNC_PASSPHRASE_SETTINGS 40952 |
77 #define IDC_SHOW_QR_SCANNER 40953 | 76 #define IDC_SHOW_QR_SCANNER 40953 |
78 #define IDC_SHOW_AUTOFILL_SETTINGS 40956 | 77 #define IDC_SHOW_AUTOFILL_SETTINGS 40956 |
79 // clang-format on | 78 // clang-format on |
80 | 79 |
81 #endif // IOS_CHROME_BROWSER_UI_COMMANDS_IOS_COMMAND_IDS_H_ | 80 #endif // IOS_CHROME_BROWSER_UI_COMMANDS_IOS_COMMAND_IDS_H_ |
OLD | NEW |