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 | 7 |
8 // This file lists all the command IDs understood by e.g. the browser. | 8 // This file lists all the command IDs understood by e.g. the browser. |
9 // It is used by Windows RC files, Mac NIB files, and other platforms too. | 9 // It is used by Windows RC files, Mac NIB files, and other platforms too. |
10 | 10 |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 #define IDC_CONTENT_CONTEXT_NO_SPELLING_SUGGESTIONS 50155 | 312 #define IDC_CONTENT_CONTEXT_NO_SPELLING_SUGGESTIONS 50155 |
313 #define IDC_CONTENT_CONTEXT_SPELLING_SUGGESTION 50156 | 313 #define IDC_CONTENT_CONTEXT_SPELLING_SUGGESTION 50156 |
314 #define IDC_CONTENT_CONTEXT_SPELLING_TOGGLE 50157 | 314 #define IDC_CONTENT_CONTEXT_SPELLING_TOGGLE 50157 |
315 #define IDC_CONTENT_CONTEXT_SPEECH_MENU 50158 | 315 #define IDC_CONTENT_CONTEXT_SPEECH_MENU 50158 |
316 #define IDC_CONTENT_CONTEXT_SPEECH_START_SPEAKING 50159 | 316 #define IDC_CONTENT_CONTEXT_SPEECH_START_SPEAKING 50159 |
317 #define IDC_CONTENT_CONTEXT_SPEECH_STOP_SPEAKING 50160 | 317 #define IDC_CONTENT_CONTEXT_SPEECH_STOP_SPEAKING 50160 |
318 #define IDC_CONTENT_CONTEXT_INSPECTBACKGROUNDPAGE 50161 | 318 #define IDC_CONTENT_CONTEXT_INSPECTBACKGROUNDPAGE 50161 |
319 #define IDC_CONTENT_CONTEXT_RELOAD_PACKAGED_APP 50162 | 319 #define IDC_CONTENT_CONTEXT_RELOAD_PACKAGED_APP 50162 |
320 #define IDC_CONTENT_CONTEXT_RESTART_PACKAGED_APP 50163 | 320 #define IDC_CONTENT_CONTEXT_RESTART_PACKAGED_APP 50163 |
321 #define IDC_CONTENT_CONTEXT_AUTOCORRECT_SPELLING_TOGGLE 50164 | 321 #define IDC_CONTENT_CONTEXT_AUTOCORRECT_SPELLING_TOGGLE 50164 |
| 322 #define IDC_CONTENT_CONTEXT_FORCESAVEPASSWORD 50165 |
322 // Frame items. | 323 // Frame items. |
323 #define IDC_CONTENT_CONTEXT_RELOADFRAME 50170 | 324 #define IDC_CONTENT_CONTEXT_RELOADFRAME 50170 |
324 #define IDC_CONTENT_CONTEXT_VIEWFRAMESOURCE 50171 | 325 #define IDC_CONTENT_CONTEXT_VIEWFRAMESOURCE 50171 |
325 #define IDC_CONTENT_CONTEXT_VIEWFRAMEINFO 50172 | 326 #define IDC_CONTENT_CONTEXT_VIEWFRAMEINFO 50172 |
326 // Search items. | 327 // Search items. |
327 #define IDC_CONTENT_CONTEXT_GOTOURL 50180 | 328 #define IDC_CONTENT_CONTEXT_GOTOURL 50180 |
328 #define IDC_CONTENT_CONTEXT_SEARCHWEBFOR 50181 | 329 #define IDC_CONTENT_CONTEXT_SEARCHWEBFOR 50181 |
329 #define IDC_CONTENT_CONTEXT_ADDSEARCHENGINE 50182 | 330 #define IDC_CONTENT_CONTEXT_ADDSEARCHENGINE 50182 |
330 | 331 |
331 // Context menu items in the bookmark bar | 332 // Context menu items in the bookmark bar |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 364 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
364 | 365 |
365 // Starting command id for menus showing bookmarks (such as the wrench menu). | 366 // Starting command id for menus showing bookmarks (such as the wrench menu). |
366 // While command ids passed to Windows functions must not be higher than 0xDFFF, | 367 // While command ids passed to Windows functions must not be higher than 0xDFFF, |
367 // these IDs are not exposed to the native system and thus can be in this | 368 // these IDs are not exposed to the native system and thus can be in this |
368 // otherwise-reserved range. No command used in a menu (such as the wrench menu) | 369 // otherwise-reserved range. No command used in a menu (such as the wrench menu) |
369 // should be higher than this, otherwise it'll conflict. | 370 // should be higher than this, otherwise it'll conflict. |
370 #define IDC_FIRST_BOOKMARK_MENU 0xE000 | 371 #define IDC_FIRST_BOOKMARK_MENU 0xE000 |
371 | 372 |
372 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 373 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
OLD | NEW |