OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 #define IDC_MANAGE_EXTENSIONS 40022 | 163 #define IDC_MANAGE_EXTENSIONS 40022 |
164 #define IDC_AUTOFILL_DEFAULT 40023 | 164 #define IDC_AUTOFILL_DEFAULT 40023 |
165 #define IDC_DEV_TOOLS_INSPECT 40025 | 165 #define IDC_DEV_TOOLS_INSPECT 40025 |
166 #define IDC_UPGRADE_DIALOG 40026 | 166 #define IDC_UPGRADE_DIALOG 40026 |
167 #define IDC_VIEW_INCOMPATIBILITIES 40027 | 167 #define IDC_VIEW_INCOMPATIBILITIES 40027 |
168 #define IDC_VIEW_BACKGROUND_PAGES 40028 | 168 #define IDC_VIEW_BACKGROUND_PAGES 40028 |
169 #define IDC_SHOW_KEYBOARD_OVERLAY 40029 | 169 #define IDC_SHOW_KEYBOARD_OVERLAY 40029 |
170 #define IDC_PROFILING_ENABLED 40030 | 170 #define IDC_PROFILING_ENABLED 40030 |
171 #define IDC_FILE_MANAGER 40031 | 171 #define IDC_FILE_MANAGER 40031 |
172 #define IDC_BOOKMARKS_MENU 40032 | 172 #define IDC_BOOKMARKS_MENU 40032 |
173 #define IDC_PROFILE_MENU 40033 | |
174 #define IDC_CREATE_NEW_PROFILE 40034 | |
175 | 173 |
176 // Spell-check | 174 // Spell-check |
177 // Insert any additional suggestions before _LAST; these have to be consecutive. | 175 // Insert any additional suggestions before _LAST; these have to be consecutive. |
178 #define IDC_SPELLCHECK_SUGGESTION_0 41000 | 176 #define IDC_SPELLCHECK_SUGGESTION_0 41000 |
179 #define IDC_SPELLCHECK_SUGGESTION_1 41001 | 177 #define IDC_SPELLCHECK_SUGGESTION_1 41001 |
180 #define IDC_SPELLCHECK_SUGGESTION_2 41002 | 178 #define IDC_SPELLCHECK_SUGGESTION_2 41002 |
181 #define IDC_SPELLCHECK_SUGGESTION_3 41003 | 179 #define IDC_SPELLCHECK_SUGGESTION_3 41003 |
182 #define IDC_SPELLCHECK_SUGGESTION_4 41004 | 180 #define IDC_SPELLCHECK_SUGGESTION_4 41004 |
183 #define IDC_SPELLCHECK_SUGGESTION_LAST IDC_SPELLCHECK_SUGGESTION_4 | 181 #define IDC_SPELLCHECK_SUGGESTION_LAST IDC_SPELLCHECK_SUGGESTION_4 |
184 #define IDC_SPELLCHECK_MENU 41005 | 182 #define IDC_SPELLCHECK_MENU 41005 |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 | 286 |
289 // Protocol handler menu entries | 287 // Protocol handler menu entries |
290 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 288 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
291 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 289 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
292 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 290 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
293 | 291 |
294 // NOTE: The last valid command value is 57343 (0xDFFF) | 292 // NOTE: The last valid command value is 57343 (0xDFFF) |
295 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 293 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
296 | 294 |
297 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 295 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
OLD | NEW |