| 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 'use strict'; | 5 'use strict'; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * Represents each volume, such as "drive", "download directory", each "USB | 8 * Represents each volume, such as "drive", "download directory", each "USB |
| 9 * flush storage", or "mounted zip archive" etc. | 9 * flush storage", or "mounted zip archive" etc. |
| 10 * | 10 * |
| (...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 873 this.isDriveBased; | 873 this.isDriveBased; |
| 874 | 874 |
| 875 /** | 875 /** |
| 876 * Whether the entry is read only or not. | 876 * Whether the entry is read only or not. |
| 877 * @type {boolean} | 877 * @type {boolean} |
| 878 */ | 878 */ |
| 879 this.isReadOnly = isReadOnly; | 879 this.isReadOnly = isReadOnly; |
| 880 | 880 |
| 881 Object.freeze(this); | 881 Object.freeze(this); |
| 882 } | 882 } |
| OLD | NEW |