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 #pragma once | 7 #pragma once |
8 | 8 |
9 // This file lists all the command IDs understood by e.g. the browser. | 9 // This file lists all the command IDs understood by e.g. the browser. |
10 // It is used by Windows RC files, Mac NIB files, and other platforms too. | 10 // It is used by Windows RC files, Mac NIB files, and other platforms too. |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 // Page-related commands | 69 // Page-related commands |
70 #define IDC_BOOKMARK_PAGE 35000 | 70 #define IDC_BOOKMARK_PAGE 35000 |
71 #define IDC_BOOKMARK_ALL_TABS 35001 | 71 #define IDC_BOOKMARK_ALL_TABS 35001 |
72 #define IDC_VIEW_SOURCE 35002 | 72 #define IDC_VIEW_SOURCE 35002 |
73 #define IDC_PRINT 35003 | 73 #define IDC_PRINT 35003 |
74 #define IDC_SAVE_PAGE 35004 | 74 #define IDC_SAVE_PAGE 35004 |
75 #define IDC_ENCODING_MENU 35005 | 75 #define IDC_ENCODING_MENU 35005 |
76 #define IDC_EMAIL_PAGE_LOCATION 35006 | 76 #define IDC_EMAIL_PAGE_LOCATION 35006 |
77 #define IDC_ADVANCED_PRINT 35007 | 77 #define IDC_ADVANCED_PRINT 35007 |
78 #define IDC_CHROME_TO_MOBILE_PAGE 35008 | 78 #define IDC_CHROME_TO_MOBILE_PAGE 35008 |
| 79 #define IDC_PRINT_TO_DESTINATION 35009 |
79 | 80 |
80 // When adding a new encoding to this list, be sure to append it to the | 81 // When adding a new encoding to this list, be sure to append it to the |
81 // EncodingMenuController::kValidEncodingIds array in | 82 // EncodingMenuController::kValidEncodingIds array in |
82 // encoding_menu_controller.cc. | 83 // encoding_menu_controller.cc. |
83 #define IDC_ENCODING_AUTO_DETECT 35500 | 84 #define IDC_ENCODING_AUTO_DETECT 35500 |
84 #define IDC_ENCODING_UTF8 35501 | 85 #define IDC_ENCODING_UTF8 35501 |
85 #define IDC_ENCODING_UTF16LE 35502 | 86 #define IDC_ENCODING_UTF16LE 35502 |
86 #define IDC_ENCODING_ISO88591 35503 | 87 #define IDC_ENCODING_ISO88591 35503 |
87 #define IDC_ENCODING_WINDOWS1252 35504 | 88 #define IDC_ENCODING_WINDOWS1252 35504 |
88 #define IDC_ENCODING_GBK 35505 | 89 #define IDC_ENCODING_GBK 35505 |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 | 320 |
320 // Protocol handler menu entries | 321 // Protocol handler menu entries |
321 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 322 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
322 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 323 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
323 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 324 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
324 | 325 |
325 // NOTE: The last valid command value is 57343 (0xDFFF) | 326 // NOTE: The last valid command value is 57343 (0xDFFF) |
326 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 327 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
327 | 328 |
328 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 329 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
OLD | NEW |