| 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 /** | 5 /** |
| 6 * Whether task manager shows 'Private Memory' instead of 'Phsical Memory'. | 6 * Whether task manager shows 'Private Memory' instead of 'Phsical Memory'. |
| 7 * @const | 7 * @const |
| 8 */ | 8 */ |
| 9 var USE_PRIVATE_MEM = false; | 9 var USE_PRIVATE_MEM = false; |
| 10 // <if expr="(is_linux or pp_ifdef('chromeos'))"> | 10 // <if expr="(is_linux or pp_ifdef('chromeos'))"> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 ]; | 36 ]; |
| 37 | 37 |
| 38 /* | 38 /* |
| 39 * Height of each tasks. It is 20px, which is also defined in CSS. | 39 * Height of each tasks. It is 20px, which is also defined in CSS. |
| 40 * @const | 40 * @const |
| 41 */ | 41 */ |
| 42 var HEIGHT_OF_TASK = 20; | 42 var HEIGHT_OF_TASK = 20; |
| 43 | 43 |
| 44 var COMMAND_CONTEXTMENU_COLUMN_PREFIX = 'columnContextMenu'; | 44 var COMMAND_CONTEXTMENU_COLUMN_PREFIX = 'columnContextMenu'; |
| 45 var COMMAND_CONTEXTMENU_TABLE_PREFIX = 'tableContextMenu'; | 45 var COMMAND_CONTEXTMENU_TABLE_PREFIX = 'tableContextMenu'; |
| 46 |
| 47 var ENABLED_COLUMNS_KEY = 'enabledColumns'; |
| OLD | NEW |