Chromium Code Reviews| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 76 #define IDC_BOOKMARK_ALL_TABS 35001 | 76 #define IDC_BOOKMARK_ALL_TABS 35001 |
| 77 #define IDC_VIEW_SOURCE 35002 | 77 #define IDC_VIEW_SOURCE 35002 |
| 78 #define IDC_PRINT 35003 | 78 #define IDC_PRINT 35003 |
| 79 #define IDC_SAVE_PAGE 35004 | 79 #define IDC_SAVE_PAGE 35004 |
| 80 #define IDC_EMAIL_PAGE_LOCATION 35006 | 80 #define IDC_EMAIL_PAGE_LOCATION 35006 |
| 81 #define IDC_BASIC_PRINT 35007 | 81 #define IDC_BASIC_PRINT 35007 |
| 82 #define IDC_SAVE_CREDIT_CARD_FOR_PAGE 35008 | 82 #define IDC_SAVE_CREDIT_CARD_FOR_PAGE 35008 |
| 83 #define IDC_TRANSLATE_PAGE 35009 | 83 #define IDC_TRANSLATE_PAGE 35009 |
| 84 #define IDC_MANAGE_PASSWORDS_FOR_PAGE 35010 | 84 #define IDC_MANAGE_PASSWORDS_FOR_PAGE 35010 |
| 85 #define IDC_ROUTE_MEDIA 35011 | 85 #define IDC_ROUTE_MEDIA 35011 |
| 86 #define IDC_WINDOW_MUTE_TAB 35012 | |
|
Robert Sesek
2017/05/16 19:47:41
nit: alignment
Elly Fong-Jones
2017/05/17 17:56:16
Done.
Robert Sesek
2017/05/17 18:14:11
Not done. Is this clang-format..?
| |
| 87 #define IDC_WINDOW_PIN_TAB 35013 | |
| 86 | 88 |
| 87 // Clipboard commands | 89 // Clipboard commands |
| 88 #define IDC_CUT 36000 | 90 #define IDC_CUT 36000 |
| 89 #define IDC_COPY 36001 | 91 #define IDC_COPY 36001 |
| 90 #define IDC_PASTE 36003 | 92 #define IDC_PASTE 36003 |
| 91 #define IDC_EDIT_MENU 36004 | 93 #define IDC_EDIT_MENU 36004 |
| 92 | 94 |
| 93 // Find-in-page | 95 // Find-in-page |
| 94 #define IDC_FIND 37000 | 96 #define IDC_FIND 37000 |
| 95 #define IDC_FIND_NEXT 37001 | 97 #define IDC_FIND_NEXT 37001 |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 348 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 350 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
| 349 | 351 |
| 350 // Starting command id for menus showing bookmarks (such as the wrench menu). | 352 // Starting command id for menus showing bookmarks (such as the wrench menu). |
| 351 // While command ids passed to Windows functions must not be higher than 0xDFFF, | 353 // While command ids passed to Windows functions must not be higher than 0xDFFF, |
| 352 // these IDs are not exposed to the native system and thus can be in this | 354 // these IDs are not exposed to the native system and thus can be in this |
| 353 // otherwise-reserved range. No command used in a menu (such as the wrench menu) | 355 // otherwise-reserved range. No command used in a menu (such as the wrench menu) |
| 354 // should be higher than this, otherwise it'll conflict. | 356 // should be higher than this, otherwise it'll conflict. |
| 355 #define IDC_FIRST_BOOKMARK_MENU 0xE000 | 357 #define IDC_FIRST_BOOKMARK_MENU 0xE000 |
| 356 | 358 |
| 357 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 359 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |