| 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 12 matching lines...) Expand all Loading... |
| 23 // how they appear in the GUI/menus (left to right, top to bottom, etc.). | 23 // how they appear in the GUI/menus (left to right, top to bottom, etc.). |
| 24 | 24 |
| 25 // Navigation commands | 25 // Navigation commands |
| 26 // TODO: Reorder to be in visible order; collapse holes | 26 // TODO: Reorder to be in visible order; collapse holes |
| 27 #define IDC_BACK 33000 | 27 #define IDC_BACK 33000 |
| 28 #define IDC_FORWARD 33001 | 28 #define IDC_FORWARD 33001 |
| 29 #define IDC_RELOAD 33002 | 29 #define IDC_RELOAD 33002 |
| 30 #define IDC_HOME 33003 | 30 #define IDC_HOME 33003 |
| 31 #define IDC_OPEN_CURRENT_URL 33004 | 31 #define IDC_OPEN_CURRENT_URL 33004 |
| 32 #define IDC_STOP 33006 | 32 #define IDC_STOP 33006 |
| 33 #define IDC_RELOAD_IGNORING_CACHE 33007 | 33 #define IDC_RELOAD_BYPASSING_CACHE 33007 |
| 34 #define IDC_LOAD_NEW_TAB_PAGE 33008 | 34 #define IDC_LOAD_NEW_TAB_PAGE 33008 |
| 35 #define IDC_RELOAD_CLEARING_CACHE 33009 | 35 #define IDC_RELOAD_CLEARING_CACHE 33009 |
| 36 | 36 |
| 37 // Window management commands | 37 // Window management commands |
| 38 #define IDC_NEW_WINDOW 34000 | 38 #define IDC_NEW_WINDOW 34000 |
| 39 #define IDC_NEW_INCOGNITO_WINDOW 34001 | 39 #define IDC_NEW_INCOGNITO_WINDOW 34001 |
| 40 #define IDC_PIN_TO_START_SCREEN 34005 | 40 #define IDC_PIN_TO_START_SCREEN 34005 |
| 41 #define IDC_CLOSE_WINDOW 34012 | 41 #define IDC_CLOSE_WINDOW 34012 |
| 42 #define IDC_ALWAYS_ON_TOP 34013 | 42 #define IDC_ALWAYS_ON_TOP 34013 |
| 43 #define IDC_NEW_TAB 34014 | 43 #define IDC_NEW_TAB 34014 |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 // 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 |
| 375 | 375 |
| 376 // 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). |
| 377 // 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, |
| 378 // 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 |
| 379 // 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) |
| 380 // should be higher than this, otherwise it'll conflict. | 380 // should be higher than this, otherwise it'll conflict. |
| 381 #define IDC_FIRST_BOOKMARK_MENU 0xE000 | 381 #define IDC_FIRST_BOOKMARK_MENU 0xE000 |
| 382 | 382 |
| 383 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ | 383 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ |
| OLD | NEW |