| 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 #define IDC_CONTENT_CONTEXT_RESTART_PACKAGED_APP 50163 | 321 #define IDC_CONTENT_CONTEXT_RESTART_PACKAGED_APP 50163 |
| 322 #define IDC_CONTENT_CONTEXT_AUTOCORRECT_SPELLING_TOGGLE 50164 | 322 #define IDC_CONTENT_CONTEXT_AUTOCORRECT_SPELLING_TOGGLE 50164 |
| 323 #define IDC_CONTENT_CONTEXT_FORCESAVEPASSWORD 50165 | 323 #define IDC_CONTENT_CONTEXT_FORCESAVEPASSWORD 50165 |
| 324 // Frame items. | 324 // Frame items. |
| 325 #define IDC_CONTENT_CONTEXT_RELOADFRAME 50170 | 325 #define IDC_CONTENT_CONTEXT_RELOADFRAME 50170 |
| 326 #define IDC_CONTENT_CONTEXT_VIEWFRAMESOURCE 50171 | 326 #define IDC_CONTENT_CONTEXT_VIEWFRAMESOURCE 50171 |
| 327 #define IDC_CONTENT_CONTEXT_VIEWFRAMEINFO 50172 | 327 #define IDC_CONTENT_CONTEXT_VIEWFRAMEINFO 50172 |
| 328 // Search items. | 328 // Search items. |
| 329 #define IDC_CONTENT_CONTEXT_GOTOURL 50180 | 329 #define IDC_CONTENT_CONTEXT_GOTOURL 50180 |
| 330 #define IDC_CONTENT_CONTEXT_SEARCHWEBFOR 50181 | 330 #define IDC_CONTENT_CONTEXT_SEARCHWEBFOR 50181 |
| 331 #define IDC_CONTENT_CONTEXT_ADDSEARCHENGINE 50182 | |
| 332 | 331 |
| 333 // Context menu items in the bookmark bar | 332 // Context menu items in the bookmark bar |
| 334 #define IDC_BOOKMARK_BAR_OPEN_ALL 51000 | 333 #define IDC_BOOKMARK_BAR_OPEN_ALL 51000 |
| 335 #define IDC_BOOKMARK_BAR_OPEN_ALL_NEW_WINDOW 51001 | 334 #define IDC_BOOKMARK_BAR_OPEN_ALL_NEW_WINDOW 51001 |
| 336 #define IDC_BOOKMARK_BAR_OPEN_ALL_INCOGNITO 51002 | 335 #define IDC_BOOKMARK_BAR_OPEN_ALL_INCOGNITO 51002 |
| 337 #define IDC_BOOKMARK_BAR_OPEN_INCOGNITO 51003 | 336 #define IDC_BOOKMARK_BAR_OPEN_INCOGNITO 51003 |
| 338 #define IDC_BOOKMARK_BAR_RENAME_FOLDER 51004 | 337 #define IDC_BOOKMARK_BAR_RENAME_FOLDER 51004 |
| 339 #define IDC_BOOKMARK_BAR_EDIT 51005 | 338 #define IDC_BOOKMARK_BAR_EDIT 51005 |
| 340 #define IDC_BOOKMARK_BAR_REMOVE 51006 | 339 #define IDC_BOOKMARK_BAR_REMOVE 51006 |
| 341 #define IDC_BOOKMARK_BAR_ADD_NEW_BOOKMARK 51007 | 340 #define IDC_BOOKMARK_BAR_ADD_NEW_BOOKMARK 51007 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 371 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 370 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
| 372 | 371 |
| 373 // Starting command id for menus showing bookmarks (such as the wrench menu). | 372 // Starting command id for menus showing bookmarks (such as the wrench menu). |
| 374 // While command ids passed to Windows functions must not be higher than 0xDFFF, | 373 // While command ids passed to Windows functions must not be higher than 0xDFFF, |
| 375 // these IDs are not exposed to the native system and thus can be in this | 374 // these IDs are not exposed to the native system and thus can be in this |
| 376 // otherwise-reserved range. No command used in a menu (such as the wrench menu) | 375 // otherwise-reserved range. No command used in a menu (such as the wrench menu) |
| 377 // should be higher than this, otherwise it'll conflict. | 376 // should be higher than this, otherwise it'll conflict. |
| 378 #define IDC_FIRST_BOOKMARK_MENU 0xE000 | 377 #define IDC_FIRST_BOOKMARK_MENU 0xE000 |
| 379 | 378 |
| 380 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 379 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |