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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 #define IDC_BOOKMARK_PAGE 35000 | 80 #define IDC_BOOKMARK_PAGE 35000 |
81 #define IDC_BOOKMARK_ALL_TABS 35001 | 81 #define IDC_BOOKMARK_ALL_TABS 35001 |
82 #define IDC_VIEW_SOURCE 35002 | 82 #define IDC_VIEW_SOURCE 35002 |
83 #define IDC_PRINT 35003 | 83 #define IDC_PRINT 35003 |
84 #define IDC_SAVE_PAGE 35004 | 84 #define IDC_SAVE_PAGE 35004 |
85 #define IDC_ENCODING_MENU 35005 | 85 #define IDC_ENCODING_MENU 35005 |
86 #define IDC_EMAIL_PAGE_LOCATION 35006 | 86 #define IDC_EMAIL_PAGE_LOCATION 35006 |
87 #define IDC_BASIC_PRINT 35007 | 87 #define IDC_BASIC_PRINT 35007 |
88 #define IDC_TRANSLATE_PAGE 35009 | 88 #define IDC_TRANSLATE_PAGE 35009 |
89 #define IDC_MANAGE_PASSWORDS_FOR_PAGE 35010 | 89 #define IDC_MANAGE_PASSWORDS_FOR_PAGE 35010 |
| 90 #define IDC_SHARE_MENU 35011 |
90 | 91 |
91 // When adding a new encoding to this list, be sure to append it to the | 92 // When adding a new encoding to this list, be sure to append it to the |
92 // EncodingMenuController::kValidEncodingIds array in | 93 // EncodingMenuController::kValidEncodingIds array in |
93 // encoding_menu_controller.cc. | 94 // encoding_menu_controller.cc. |
94 #define IDC_ENCODING_AUTO_DETECT 35500 | 95 #define IDC_ENCODING_AUTO_DETECT 35500 |
95 #define IDC_ENCODING_UTF8 35501 | 96 #define IDC_ENCODING_UTF8 35501 |
96 #define IDC_ENCODING_UTF16LE 35502 | 97 #define IDC_ENCODING_UTF16LE 35502 |
97 #define IDC_ENCODING_WINDOWS1252 35503 | 98 #define IDC_ENCODING_WINDOWS1252 35503 |
98 #define IDC_ENCODING_GBK 35504 | 99 #define IDC_ENCODING_GBK 35504 |
99 #define IDC_ENCODING_GB18030 35505 | 100 #define IDC_ENCODING_GB18030 35505 |
(...skipping 263 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 |