| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 #define IDC_PRESENTATION_MODE 34039 | 62 #define IDC_PRESENTATION_MODE 34039 |
| 63 | 63 |
| 64 // Page-related commands | 64 // Page-related commands |
| 65 #define IDC_BOOKMARK_PAGE 35000 | 65 #define IDC_BOOKMARK_PAGE 35000 |
| 66 #define IDC_BOOKMARK_ALL_TABS 35001 | 66 #define IDC_BOOKMARK_ALL_TABS 35001 |
| 67 #define IDC_VIEW_SOURCE 35002 | 67 #define IDC_VIEW_SOURCE 35002 |
| 68 #define IDC_PRINT 35003 | 68 #define IDC_PRINT 35003 |
| 69 #define IDC_SAVE_PAGE 35004 | 69 #define IDC_SAVE_PAGE 35004 |
| 70 #define IDC_ENCODING_MENU 35005 | 70 #define IDC_ENCODING_MENU 35005 |
| 71 #define IDC_EMAIL_PAGE_LOCATION 35006 | 71 #define IDC_EMAIL_PAGE_LOCATION 35006 |
| 72 #define IDC_ADVANCED_PRINT 35007 |
| 72 | 73 |
| 73 // When adding a new encoding to this list, be sure to append it to the | 74 // When adding a new encoding to this list, be sure to append it to the |
| 74 // EncodingMenuController::kValidEncodingIds array in | 75 // EncodingMenuController::kValidEncodingIds array in |
| 75 // encoding_menu_controller.cc. | 76 // encoding_menu_controller.cc. |
| 76 #define IDC_ENCODING_AUTO_DETECT 35500 | 77 #define IDC_ENCODING_AUTO_DETECT 35500 |
| 77 #define IDC_ENCODING_UTF8 35501 | 78 #define IDC_ENCODING_UTF8 35501 |
| 78 #define IDC_ENCODING_UTF16LE 35502 | 79 #define IDC_ENCODING_UTF16LE 35502 |
| 79 #define IDC_ENCODING_ISO88591 35503 | 80 #define IDC_ENCODING_ISO88591 35503 |
| 80 #define IDC_ENCODING_WINDOWS1252 35504 | 81 #define IDC_ENCODING_WINDOWS1252 35504 |
| 81 #define IDC_ENCODING_GBK 35505 | 82 #define IDC_ENCODING_GBK 35505 |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 | 294 |
| 294 // Protocol handler menu entries | 295 // Protocol handler menu entries |
| 295 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 | 296 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 |
| 296 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 | 297 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 |
| 297 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 | 298 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 |
| 298 | 299 |
| 299 // NOTE: The last valid command value is 57343 (0xDFFF) | 300 // NOTE: The last valid command value is 57343 (0xDFFF) |
| 300 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 301 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
| 301 | 302 |
| 302 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 303 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |