| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 * Enumeration of valid drop locations relative to an element. These are | 6 * Enumeration of valid drop locations relative to an element. These are |
| 7 * bit masks to allow combining multiple locations in a single value. | 7 * bit masks to allow combining multiple locations in a single value. |
| 8 * @enum {number} | 8 * @enum {number} |
| 9 * @const | 9 * @const |
| 10 */ | 10 */ |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 /** @const */ | 46 /** @const */ |
| 47 var LOCAL_STORAGE_CLOSED_FOLDERS_KEY = 'closedState'; | 47 var LOCAL_STORAGE_CLOSED_FOLDERS_KEY = 'closedState'; |
| 48 | 48 |
| 49 /** @const */ | 49 /** @const */ |
| 50 var LOCAL_STORAGE_TREE_WIDTH_KEY = 'treeWidth'; | 50 var LOCAL_STORAGE_TREE_WIDTH_KEY = 'treeWidth'; |
| 51 | 51 |
| 52 /** @const */ | 52 /** @const */ |
| 53 var ROOT_NODE_ID = '0'; | 53 var ROOT_NODE_ID = '0'; |
| 54 |
| 55 /** @const {number} */ |
| 56 var OPEN_CONFIRMATION_LIMIT = 15; |
| OLD | NEW |