| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 #define IDC_SPELLCHECK_SUGGESTION_2 41002 | 182 #define IDC_SPELLCHECK_SUGGESTION_2 41002 |
| 183 #define IDC_SPELLCHECK_SUGGESTION_3 41003 | 183 #define IDC_SPELLCHECK_SUGGESTION_3 41003 |
| 184 #define IDC_SPELLCHECK_SUGGESTION_4 41004 | 184 #define IDC_SPELLCHECK_SUGGESTION_4 41004 |
| 185 #define IDC_SPELLCHECK_SUGGESTION_LAST IDC_SPELLCHECK_SUGGESTION_4 | 185 #define IDC_SPELLCHECK_SUGGESTION_LAST IDC_SPELLCHECK_SUGGESTION_4 |
| 186 #define IDC_SPELLCHECK_MENU 41005 | 186 #define IDC_SPELLCHECK_MENU 41005 |
| 187 // Language entries are inserted using autogenerated values between | 187 // Language entries are inserted using autogenerated values between |
| 188 // [_FIRST, _LAST). | 188 // [_FIRST, _LAST). |
| 189 #define IDC_SPELLCHECK_LANGUAGES_FIRST 41006 | 189 #define IDC_SPELLCHECK_LANGUAGES_FIRST 41006 |
| 190 #define IDC_SPELLCHECK_LANGUAGES_LAST 41106 | 190 #define IDC_SPELLCHECK_LANGUAGES_LAST 41106 |
| 191 #define IDC_CHECK_SPELLING_OF_THIS_FIELD 41107 | 191 #define IDC_CHECK_SPELLING_OF_THIS_FIELD 41107 |
| 192 #define IDC_SYNC_BOOKMARKS 41108 | |
| 193 #define IDC_SPELLPANEL_TOGGLE 41109 | 192 #define IDC_SPELLPANEL_TOGGLE 41109 |
| 194 #define IDC_SPELLCHECK_ADD_TO_DICTIONARY 41110 | 193 #define IDC_SPELLCHECK_ADD_TO_DICTIONARY 41110 |
| 195 | 194 |
| 196 // Writing direction | 195 // Writing direction |
| 197 #define IDC_WRITING_DIRECTION_MENU 41120 // OSX only | 196 #define IDC_WRITING_DIRECTION_MENU 41120 // OSX only |
| 198 #define IDC_WRITING_DIRECTION_DEFAULT 41121 // OSX only | 197 #define IDC_WRITING_DIRECTION_DEFAULT 41121 // OSX only |
| 199 #define IDC_WRITING_DIRECTION_LTR 41122 // OSX only | 198 #define IDC_WRITING_DIRECTION_LTR 41122 // OSX only |
| 200 #define IDC_WRITING_DIRECTION_RTL 41123 // OSX only | 199 #define IDC_WRITING_DIRECTION_RTL 41123 // OSX only |
| 201 | 200 |
| 202 // Translate | 201 // Translate |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 | 305 |
| 307 // Protocol handler menu entries | 306 // Protocol handler menu entries |
| 308 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 307 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
| 309 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 308 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
| 310 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 309 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
| 311 | 310 |
| 312 // NOTE: The last valid command value is 57343 (0xDFFF) | 311 // NOTE: The last valid command value is 57343 (0xDFFF) |
| 313 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 312 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
| 314 | 313 |
| 315 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 314 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |