| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 | 61 |
| 62 // Page-related commands | 62 // Page-related commands |
| 63 #define IDC_BOOKMARK_PAGE 35000 | 63 #define IDC_BOOKMARK_PAGE 35000 |
| 64 #define IDC_BOOKMARK_ALL_TABS 35001 | 64 #define IDC_BOOKMARK_ALL_TABS 35001 |
| 65 #define IDC_VIEW_SOURCE 35002 | 65 #define IDC_VIEW_SOURCE 35002 |
| 66 #define IDC_PRINT 35003 | 66 #define IDC_PRINT 35003 |
| 67 #define IDC_SAVE_PAGE 35004 | 67 #define IDC_SAVE_PAGE 35004 |
| 68 #define IDC_ENCODING_MENU 35005 | 68 #define IDC_ENCODING_MENU 35005 |
| 69 #define IDC_EMAIL_PAGE_LOCATION 35006 | 69 #define IDC_EMAIL_PAGE_LOCATION 35006 |
| 70 #define IDC_ADVANCED_PRINT 35007 | 70 #define IDC_ADVANCED_PRINT 35007 |
| 71 #define IDC_CHROME_TO_MOBILE_PAGE 35008 |
| 71 | 72 |
| 72 // When adding a new encoding to this list, be sure to append it to the | 73 // When adding a new encoding to this list, be sure to append it to the |
| 73 // EncodingMenuController::kValidEncodingIds array in | 74 // EncodingMenuController::kValidEncodingIds array in |
| 74 // encoding_menu_controller.cc. | 75 // encoding_menu_controller.cc. |
| 75 #define IDC_ENCODING_AUTO_DETECT 35500 | 76 #define IDC_ENCODING_AUTO_DETECT 35500 |
| 76 #define IDC_ENCODING_UTF8 35501 | 77 #define IDC_ENCODING_UTF8 35501 |
| 77 #define IDC_ENCODING_UTF16LE 35502 | 78 #define IDC_ENCODING_UTF16LE 35502 |
| 78 #define IDC_ENCODING_ISO88591 35503 | 79 #define IDC_ENCODING_ISO88591 35503 |
| 79 #define IDC_ENCODING_WINDOWS1252 35504 | 80 #define IDC_ENCODING_WINDOWS1252 35504 |
| 80 #define IDC_ENCODING_GBK 35505 | 81 #define IDC_ENCODING_GBK 35505 |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 | 307 |
| 307 // Protocol handler menu entries | 308 // Protocol handler menu entries |
| 308 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 309 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
| 309 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 310 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
| 310 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 311 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
| 311 | 312 |
| 312 // NOTE: The last valid command value is 57343 (0xDFFF) | 313 // NOTE: The last valid command value is 57343 (0xDFFF) |
| 313 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 314 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
| 314 | 315 |
| 315 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 316 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |