| 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 #define IDC_VIEW_INCOMPATIBILITIES 40024 | 166 #define IDC_VIEW_INCOMPATIBILITIES 40024 |
| 167 #define IDC_VIEW_BACKGROUND_PAGES 40025 | 167 #define IDC_VIEW_BACKGROUND_PAGES 40025 |
| 168 #define IDC_SHOW_KEYBOARD_OVERLAY 40026 | 168 #define IDC_SHOW_KEYBOARD_OVERLAY 40026 |
| 169 #define IDC_PROFILING_ENABLED 40027 | 169 #define IDC_PROFILING_ENABLED 40027 |
| 170 #define IDC_FILE_MANAGER 40028 | 170 #define IDC_FILE_MANAGER 40028 |
| 171 #define IDC_BOOKMARKS_MENU 40029 | 171 #define IDC_BOOKMARKS_MENU 40029 |
| 172 #define IDC_SHOW_SYNC_SETUP 40030 | 172 #define IDC_SHOW_SYNC_SETUP 40030 |
| 173 #define IDC_EXTENSION_ERRORS 40031 | 173 #define IDC_EXTENSION_ERRORS 40031 |
| 174 #define IDC_SHOW_SYNC_ERROR 40032 | 174 #define IDC_SHOW_SYNC_ERROR 40032 |
| 175 #define IDC_SHOW_SETTINGS_CHANGES 40033 | 175 #define IDC_SHOW_SETTINGS_CHANGES 40033 |
| 176 #define IDC_SHOW_AVATAR_MENU 40034 |
| 176 | 177 |
| 177 // Spell-check | 178 // Spell-check |
| 178 // Insert any additional suggestions before _LAST; these have to be consecutive. | 179 // Insert any additional suggestions before _LAST; these have to be consecutive. |
| 179 #define IDC_SPELLCHECK_SUGGESTION_0 41000 | 180 #define IDC_SPELLCHECK_SUGGESTION_0 41000 |
| 180 #define IDC_SPELLCHECK_SUGGESTION_1 41001 | 181 #define IDC_SPELLCHECK_SUGGESTION_1 41001 |
| 181 #define IDC_SPELLCHECK_SUGGESTION_2 41002 | 182 #define IDC_SPELLCHECK_SUGGESTION_2 41002 |
| 182 #define IDC_SPELLCHECK_SUGGESTION_3 41003 | 183 #define IDC_SPELLCHECK_SUGGESTION_3 41003 |
| 183 #define IDC_SPELLCHECK_SUGGESTION_4 41004 | 184 #define IDC_SPELLCHECK_SUGGESTION_4 41004 |
| 184 #define IDC_SPELLCHECK_SUGGESTION_LAST IDC_SPELLCHECK_SUGGESTION_4 | 185 #define IDC_SPELLCHECK_SUGGESTION_LAST IDC_SPELLCHECK_SUGGESTION_4 |
| 185 #define IDC_SPELLCHECK_MENU 41005 | 186 #define IDC_SPELLCHECK_MENU 41005 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 | 301 |
| 301 // Protocol handler menu entries | 302 // Protocol handler menu entries |
| 302 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 303 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
| 303 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 304 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
| 304 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 305 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
| 305 | 306 |
| 306 // NOTE: The last valid command value is 57343 (0xDFFF) | 307 // NOTE: The last valid command value is 57343 (0xDFFF) |
| 307 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 308 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
| 308 | 309 |
| 309 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 310 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |