| 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 // Writing direction | 239 // Writing direction |
| 240 #define IDC_WRITING_DIRECTION_MENU 41120 | 240 #define IDC_WRITING_DIRECTION_MENU 41120 |
| 241 #define IDC_WRITING_DIRECTION_DEFAULT 41121 | 241 #define IDC_WRITING_DIRECTION_DEFAULT 41121 |
| 242 #define IDC_WRITING_DIRECTION_LTR 41122 | 242 #define IDC_WRITING_DIRECTION_LTR 41122 |
| 243 #define IDC_WRITING_DIRECTION_RTL 41123 | 243 #define IDC_WRITING_DIRECTION_RTL 41123 |
| 244 | 244 |
| 245 // Translate | 245 // Translate |
| 246 #define IDC_TRANSLATE_ORIGINAL_LANGUAGE_BASE 42100 | 246 #define IDC_TRANSLATE_ORIGINAL_LANGUAGE_BASE 42100 |
| 247 #define IDC_TRANSLATE_TARGET_LANGUAGE_BASE 42400 | 247 #define IDC_TRANSLATE_TARGET_LANGUAGE_BASE 42400 |
| 248 | 248 |
| 249 // Speech input | |
| 250 #define IDC_TOGGLE_SPEECH_INPUT 42500 | |
| 251 | |
| 252 // Identifiers for platform-specific items. | 249 // Identifiers for platform-specific items. |
| 253 // Placed in a common file to help insure they never collide. | 250 // Placed in a common file to help insure they never collide. |
| 254 #define IDC_VIEW_MENU 44000 // OSX only | 251 #define IDC_VIEW_MENU 44000 // OSX only |
| 255 #define IDC_FILE_MENU 44001 // OSX only | 252 #define IDC_FILE_MENU 44001 // OSX only |
| 256 #define IDC_CHROME_MENU 44002 // OSX only | 253 #define IDC_CHROME_MENU 44002 // OSX only |
| 257 #define IDC_HIDE_APP 44003 // OSX only | 254 #define IDC_HIDE_APP 44003 // OSX only |
| 258 #define IDC_HISTORY_MENU 46000 // OSX only | 255 #define IDC_HISTORY_MENU 46000 // OSX only |
| 259 #define IDC_PROFILE_MAIN_MENU 46100 // OSX only | 256 #define IDC_PROFILE_MAIN_MENU 46100 // OSX only |
| 260 #define IDC_INPUT_METHODS_MENU 46300 // Linux only | 257 #define IDC_INPUT_METHODS_MENU 46300 // Linux only |
| 261 #define IDC_TOUCH_HUD_PROJECTION_TOGGLE 46400 // ChromeOS only | 258 #define IDC_TOUCH_HUD_PROJECTION_TOGGLE 46400 // ChromeOS only |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx | 374 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx |
| 378 | 375 |
| 379 // Starting command id for menus showing bookmarks (such as the wrench menu). | 376 // Starting command id for menus showing bookmarks (such as the wrench menu). |
| 380 // While command ids passed to Windows functions must not be higher than 0xDFFF, | 377 // While command ids passed to Windows functions must not be higher than 0xDFFF, |
| 381 // these IDs are not exposed to the native system and thus can be in this | 378 // these IDs are not exposed to the native system and thus can be in this |
| 382 // otherwise-reserved range. No command used in a menu (such as the wrench menu) | 379 // otherwise-reserved range. No command used in a menu (such as the wrench menu) |
| 383 // should be higher than this, otherwise it'll conflict. | 380 // should be higher than this, otherwise it'll conflict. |
| 384 #define IDC_FIRST_BOOKMARK_MENU 0xE000 | 381 #define IDC_FIRST_BOOKMARK_MENU 0xE000 |
| 385 | 382 |
| 386 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 383 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |