| 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_ |
| 6 #define CHROME_APP_CHROME_COMMAND_IDS_H_ |
| 7 #pragma once |
| 8 |
| 5 // 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. |
| 6 // 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. |
| 7 | 11 |
| 8 // Values below IDC_MinimumLabelValue are reserved for dynamic menu items. | 12 // Values below IDC_MinimumLabelValue are reserved for dynamic menu items. |
| 9 #define IDC_MinimumLabelValue 4000 | 13 #define IDC_MinimumLabelValue 4000 |
| 10 | 14 |
| 11 #define IDC_Messages 4000 | 15 #define IDC_Messages 4000 |
| 12 #define IDC_MessagesAll 4007 | 16 #define IDC_MessagesAll 4007 |
| 13 #define IDC_MessagesNone 4008 | 17 #define IDC_MessagesNone 4008 |
| 14 | 18 |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 #define IDC_MANAGE_EXTENSIONS 40022 | 163 #define IDC_MANAGE_EXTENSIONS 40022 |
| 160 #define IDC_AUTOFILL_DEFAULT 40023 | 164 #define IDC_AUTOFILL_DEFAULT 40023 |
| 161 #define IDC_DEV_TOOLS_INSPECT 40025 | 165 #define IDC_DEV_TOOLS_INSPECT 40025 |
| 162 #define IDC_UPGRADE_DIALOG 40026 | 166 #define IDC_UPGRADE_DIALOG 40026 |
| 163 #define IDC_VIEW_INCOMPATIBILITIES 40027 | 167 #define IDC_VIEW_INCOMPATIBILITIES 40027 |
| 164 #define IDC_VIEW_BACKGROUND_PAGES 40028 | 168 #define IDC_VIEW_BACKGROUND_PAGES 40028 |
| 165 #define IDC_SHOW_KEYBOARD_OVERLAY 40029 | 169 #define IDC_SHOW_KEYBOARD_OVERLAY 40029 |
| 166 #define IDC_PROFILING_ENABLED 40030 | 170 #define IDC_PROFILING_ENABLED 40030 |
| 167 #define IDC_FILE_MANAGER 40031 | 171 #define IDC_FILE_MANAGER 40031 |
| 168 #define IDC_BOOKMARKS_MENU 40032 | 172 #define IDC_BOOKMARKS_MENU 40032 |
| 173 #define IDC_PROFILE_MENU 40033 |
| 174 #define IDC_CREATE_NEW_PROFILE 40034 |
| 169 | 175 |
| 170 // Spell-check | 176 // Spell-check |
| 171 // Insert any additional suggestions before _LAST; these have to be consecutive. | 177 // Insert any additional suggestions before _LAST; these have to be consecutive. |
| 172 #define IDC_SPELLCHECK_SUGGESTION_0 41000 | 178 #define IDC_SPELLCHECK_SUGGESTION_0 41000 |
| 173 #define IDC_SPELLCHECK_SUGGESTION_1 41001 | 179 #define IDC_SPELLCHECK_SUGGESTION_1 41001 |
| 174 #define IDC_SPELLCHECK_SUGGESTION_2 41002 | 180 #define IDC_SPELLCHECK_SUGGESTION_2 41002 |
| 175 #define IDC_SPELLCHECK_SUGGESTION_3 41003 | 181 #define IDC_SPELLCHECK_SUGGESTION_3 41003 |
| 176 #define IDC_SPELLCHECK_SUGGESTION_4 41004 | 182 #define IDC_SPELLCHECK_SUGGESTION_4 41004 |
| 177 #define IDC_SPELLCHECK_SUGGESTION_LAST IDC_SPELLCHECK_SUGGESTION_4 | 183 #define IDC_SPELLCHECK_SUGGESTION_LAST IDC_SPELLCHECK_SUGGESTION_4 |
| 178 #define IDC_SPELLCHECK_MENU 41005 | 184 #define IDC_SPELLCHECK_MENU 41005 |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 #define IDC_BOOKMARK_BAR_RENAME_FOLDER 51004 | 275 #define IDC_BOOKMARK_BAR_RENAME_FOLDER 51004 |
| 270 #define IDC_BOOKMARK_BAR_EDIT 51005 | 276 #define IDC_BOOKMARK_BAR_EDIT 51005 |
| 271 #define IDC_BOOKMARK_BAR_REMOVE 51006 | 277 #define IDC_BOOKMARK_BAR_REMOVE 51006 |
| 272 #define IDC_BOOKMARK_BAR_ADD_NEW_BOOKMARK 51007 | 278 #define IDC_BOOKMARK_BAR_ADD_NEW_BOOKMARK 51007 |
| 273 #define IDC_BOOKMARK_BAR_NEW_FOLDER 51008 | 279 #define IDC_BOOKMARK_BAR_NEW_FOLDER 51008 |
| 274 #define IDC_BOOKMARK_MANAGER 51009 | 280 #define IDC_BOOKMARK_MANAGER 51009 |
| 275 #define IDC_BOOKMARK_BAR_ALWAYS_SHOW 51010 | 281 #define IDC_BOOKMARK_BAR_ALWAYS_SHOW 51010 |
| 276 | 282 |
| 277 // Context menu items in the status tray | 283 // Context menu items in the status tray |
| 278 #define IDC_STATUS_TRAY_KEEP_CHROME_RUNNING_IN_BACKGROUND 51100 | 284 #define IDC_STATUS_TRAY_KEEP_CHROME_RUNNING_IN_BACKGROUND 51100 |
| 285 |
| 286 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |