OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 * Location information which shows where the path points in FileManager's | 6 * Location information which shows where the path points in FileManager's |
7 * file system. | 7 * file system. |
8 * @interface | 8 * @interface |
9 */ | 9 */ |
10 function EntryLocation() {}; | 10 function EntryLocation() {}; |
(...skipping 28 matching lines...) Expand all Loading... |
39 * represents a special search from Google Drive. | 39 * represents a special search from Google Drive. |
40 * @type {boolean} | 40 * @type {boolean} |
41 */ | 41 */ |
42 EntryLocation.prototype.isDriveBased; | 42 EntryLocation.prototype.isDriveBased; |
43 | 43 |
44 /** | 44 /** |
45 * Whether the entry is read only or not. | 45 * Whether the entry is read only or not. |
46 * @type {boolean} | 46 * @type {boolean} |
47 */ | 47 */ |
48 EntryLocation.prototype.isReadOnly; | 48 EntryLocation.prototype.isReadOnly; |
| 49 |
| 50 /** |
| 51 * Whether the entry should be displayed with a fixed name instead of individual |
| 52 * entry's name. (e.g. "Downloads" is a fixed name) |
| 53 * @type {boolean} |
| 54 */ |
| 55 EntryLocation.prototype.hasFixedLabel; |
OLD | NEW |