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