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 #pragma once | 7 #pragma once |
8 | 8 |
9 // This file lists all the command IDs understood by e.g. the browser. | 9 // This file lists all the command IDs understood by e.g. the browser. |
10 // It is used by Windows RC files, Mac NIB files, and other platforms too. | 10 // It is used by Windows RC files, Mac NIB files, and other platforms too. |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
152 #define IDC_SHOW_BOOKMARK_BAR 40009 | 152 #define IDC_SHOW_BOOKMARK_BAR 40009 |
153 #define IDC_SHOW_HISTORY 40010 | 153 #define IDC_SHOW_HISTORY 40010 |
154 #define IDC_SHOW_BOOKMARK_MANAGER 40011 | 154 #define IDC_SHOW_BOOKMARK_MANAGER 40011 |
155 #define IDC_SHOW_DOWNLOADS 40012 | 155 #define IDC_SHOW_DOWNLOADS 40012 |
156 #define IDC_CLEAR_BROWSING_DATA 40013 | 156 #define IDC_CLEAR_BROWSING_DATA 40013 |
157 #define IDC_IMPORT_SETTINGS 40014 | 157 #define IDC_IMPORT_SETTINGS 40014 |
158 #define IDC_OPTIONS 40015 | 158 #define IDC_OPTIONS 40015 |
159 #define IDC_EDIT_SEARCH_ENGINES 40016 | 159 #define IDC_EDIT_SEARCH_ENGINES 40016 |
160 #define IDC_VIEW_PASSWORDS 40017 | 160 #define IDC_VIEW_PASSWORDS 40017 |
161 #define IDC_ABOUT 40018 | 161 #define IDC_ABOUT 40018 |
162 #define IDC_HELP_PAGE 40019 | 162 #define IDC_HELP_PAGE_VIA_KEYBOARD 40019 |
163 #define IDC_HELP_PAGE_VIA_MENU 40119 | |
sky
2012/06/08 17:05:20
I think we should maintain all values are increasi
Daniel Erat
2012/06/08 18:38:45
Ah, I'll renumber. I was thrown by some of the ex
| |
163 #define IDC_SHOW_APP_MENU 40020 | 164 #define IDC_SHOW_APP_MENU 40020 |
164 #define IDC_MANAGE_EXTENSIONS 40021 | 165 #define IDC_MANAGE_EXTENSIONS 40021 |
165 #define IDC_DEV_TOOLS_INSPECT 40022 | 166 #define IDC_DEV_TOOLS_INSPECT 40022 |
166 #define IDC_UPGRADE_DIALOG 40023 | 167 #define IDC_UPGRADE_DIALOG 40023 |
167 #define IDC_VIEW_INCOMPATIBILITIES 40024 | 168 #define IDC_VIEW_INCOMPATIBILITIES 40024 |
168 #define IDC_VIEW_BACKGROUND_PAGES 40025 | 169 #define IDC_VIEW_BACKGROUND_PAGES 40025 |
169 #define IDC_SHOW_KEYBOARD_OVERLAY 40026 | 170 #define IDC_SHOW_KEYBOARD_OVERLAY 40026 |
170 #define IDC_PROFILING_ENABLED 40027 | 171 #define IDC_PROFILING_ENABLED 40027 |
171 #define IDC_BOOKMARKS_MENU 40029 | 172 #define IDC_BOOKMARKS_MENU 40029 |
172 #define IDC_SHOW_SYNC_SETUP 40030 | 173 #define IDC_SHOW_SYNC_SETUP 40030 |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
311 | 312 |
312 // Protocol handler menu entries | 313 // Protocol handler menu entries |
313 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 314 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
314 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 315 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
315 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 316 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
316 | 317 |
317 // NOTE: The last valid command value is 57343 (0xDFFF) | 318 // NOTE: The last valid command value is 57343 (0xDFFF) |
318 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 319 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
319 | 320 |
320 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 321 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
OLD | NEW |