| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 #define IDC_BOOKMARK_PAGE 35000 | 74 #define IDC_BOOKMARK_PAGE 35000 |
| 75 #define IDC_BOOKMARK_ALL_TABS 35001 | 75 #define IDC_BOOKMARK_ALL_TABS 35001 |
| 76 #define IDC_VIEW_SOURCE 35002 | 76 #define IDC_VIEW_SOURCE 35002 |
| 77 #define IDC_PRINT 35003 | 77 #define IDC_PRINT 35003 |
| 78 #define IDC_SAVE_PAGE 35004 | 78 #define IDC_SAVE_PAGE 35004 |
| 79 #define IDC_ENCODING_MENU 35005 | 79 #define IDC_ENCODING_MENU 35005 |
| 80 #define IDC_EMAIL_PAGE_LOCATION 35006 | 80 #define IDC_EMAIL_PAGE_LOCATION 35006 |
| 81 #define IDC_ADVANCED_PRINT 35007 | 81 #define IDC_ADVANCED_PRINT 35007 |
| 82 #define IDC_CHROME_TO_MOBILE_PAGE 35008 | 82 #define IDC_CHROME_TO_MOBILE_PAGE 35008 |
| 83 #define IDC_PRINT_TO_DESTINATION 35009 | 83 #define IDC_PRINT_TO_DESTINATION 35009 |
| 84 #define IDC_SHARE_PAGE 35010 | |
| 85 | 84 |
| 86 // When adding a new encoding to this list, be sure to append it to the | 85 // When adding a new encoding to this list, be sure to append it to the |
| 87 // EncodingMenuController::kValidEncodingIds array in | 86 // EncodingMenuController::kValidEncodingIds array in |
| 88 // encoding_menu_controller.cc. | 87 // encoding_menu_controller.cc. |
| 89 #define IDC_ENCODING_AUTO_DETECT 35500 | 88 #define IDC_ENCODING_AUTO_DETECT 35500 |
| 90 #define IDC_ENCODING_UTF8 35501 | 89 #define IDC_ENCODING_UTF8 35501 |
| 91 #define IDC_ENCODING_UTF16LE 35502 | 90 #define IDC_ENCODING_UTF16LE 35502 |
| 92 #define IDC_ENCODING_ISO88591 35503 | 91 #define IDC_ENCODING_ISO88591 35503 |
| 93 #define IDC_ENCODING_WINDOWS1252 35504 | 92 #define IDC_ENCODING_WINDOWS1252 35504 |
| 94 #define IDC_ENCODING_GBK 35505 | 93 #define IDC_ENCODING_GBK 35505 |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 | 328 |
| 330 // Protocol handler menu entries | 329 // Protocol handler menu entries |
| 331 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 330 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
| 332 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 331 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
| 333 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 332 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
| 334 | 333 |
| 335 // NOTE: The last valid command value is 57343 (0xDFFF) | 334 // NOTE: The last valid command value is 57343 (0xDFFF) |
| 336 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 335 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
| 337 | 336 |
| 338 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 337 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |