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