| 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 #define IDC_CONTENT_CONTEXT_PASTE_AND_MATCH_STYLE 50147 | 268 #define IDC_CONTENT_CONTEXT_PASTE_AND_MATCH_STYLE 50147 |
| 269 // Other items. | 269 // Other items. |
| 270 #define IDC_CONTENT_CONTEXT_TRANSLATE 50150 | 270 #define IDC_CONTENT_CONTEXT_TRANSLATE 50150 |
| 271 #define IDC_CONTENT_CONTEXT_INSPECTELEMENT 50151 | 271 #define IDC_CONTENT_CONTEXT_INSPECTELEMENT 50151 |
| 272 #define IDC_CONTENT_CONTEXT_VIEWPAGEINFO 50152 | 272 #define IDC_CONTENT_CONTEXT_VIEWPAGEINFO 50152 |
| 273 #define IDC_CONTENT_CONTEXT_LANGUAGE_SETTINGS 50153 | 273 #define IDC_CONTENT_CONTEXT_LANGUAGE_SETTINGS 50153 |
| 274 #define IDC_CONTENT_CONTEXT_LOOK_UP 50154 | 274 #define IDC_CONTENT_CONTEXT_LOOK_UP 50154 |
| 275 #define IDC_CONTENT_CONTEXT_NO_SPELLING_SUGGESTIONS 50155 | 275 #define IDC_CONTENT_CONTEXT_NO_SPELLING_SUGGESTIONS 50155 |
| 276 #define IDC_CONTENT_CONTEXT_SPELLING_SUGGESTION 50156 | 276 #define IDC_CONTENT_CONTEXT_SPELLING_SUGGESTION 50156 |
| 277 #define IDC_CONTENT_CONTEXT_SPELLING_TOGGLE 50157 | 277 #define IDC_CONTENT_CONTEXT_SPELLING_TOGGLE 50157 |
| 278 #define IDC_CONTENT_CONTEXT_SPEECH_MENU 50158 | |
| 279 #define IDC_CONTENT_CONTEXT_SPEECH_START_SPEAKING 50159 | |
| 280 #define IDC_CONTENT_CONTEXT_SPEECH_STOP_SPEAKING 50160 | |
| 281 #define IDC_CONTENT_CONTEXT_INSPECTBACKGROUNDPAGE 50161 | 278 #define IDC_CONTENT_CONTEXT_INSPECTBACKGROUNDPAGE 50161 |
| 282 #define IDC_CONTENT_CONTEXT_RELOAD_PACKAGED_APP 50162 | 279 #define IDC_CONTENT_CONTEXT_RELOAD_PACKAGED_APP 50162 |
| 283 #define IDC_CONTENT_CONTEXT_RESTART_PACKAGED_APP 50163 | 280 #define IDC_CONTENT_CONTEXT_RESTART_PACKAGED_APP 50163 |
| 284 #define IDC_CONTENT_CONTEXT_FORCESAVEPASSWORD 50165 | 281 #define IDC_CONTENT_CONTEXT_FORCESAVEPASSWORD 50165 |
| 285 #define IDC_CONTENT_CONTEXT_GENERATEPASSWORD 50166 | 282 #define IDC_CONTENT_CONTEXT_GENERATEPASSWORD 50166 |
| 286 #define IDC_CONTENT_CONTEXT_EXIT_FULLSCREEN 50167 | 283 #define IDC_CONTENT_CONTEXT_EXIT_FULLSCREEN 50167 |
| 287 // Frame items. | 284 // Frame items. |
| 288 #define IDC_CONTENT_CONTEXT_RELOADFRAME 50170 | 285 #define IDC_CONTENT_CONTEXT_RELOADFRAME 50170 |
| 289 #define IDC_CONTENT_CONTEXT_VIEWFRAMESOURCE 50171 | 286 #define IDC_CONTENT_CONTEXT_VIEWFRAMESOURCE 50171 |
| 290 #define IDC_CONTENT_CONTEXT_VIEWFRAMEINFO 50172 | 287 #define IDC_CONTENT_CONTEXT_VIEWFRAMEINFO 50172 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 352 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
| 356 | 353 |
| 357 // Starting command id for menus showing bookmarks (such as the wrench menu). | 354 // Starting command id for menus showing bookmarks (such as the wrench menu). |
| 358 // While command ids passed to Windows functions must not be higher than 0xDFFF, | 355 // While command ids passed to Windows functions must not be higher than 0xDFFF, |
| 359 // these IDs are not exposed to the native system and thus can be in this | 356 // these IDs are not exposed to the native system and thus can be in this |
| 360 // otherwise-reserved range. No command used in a menu (such as the wrench menu) | 357 // otherwise-reserved range. No command used in a menu (such as the wrench menu) |
| 361 // should be higher than this, otherwise it'll conflict. | 358 // should be higher than this, otherwise it'll conflict. |
| 362 #define IDC_FIRST_BOOKMARK_MENU 0xE000 | 359 #define IDC_FIRST_BOOKMARK_MENU 0xE000 |
| 363 | 360 |
| 364 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 361 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |