| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 * Namespace for custom types. | 8 * Namespace for custom types. |
| 9 * @namespace | 9 * @namespace |
| 10 */ | 10 */ |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 /** | 71 /** |
| 72 * @see | 72 * @see |
| 73 * https://developer.chrome.com/apps/fileSystemProvider#event-onReadFileRequeste
d | 73 * https://developer.chrome.com/apps/fileSystemProvider#event-onReadFileRequeste
d |
| 74 * @typedef {!Object<{fileSystemId: !unpacker.types.FileSystemId, | 74 * @typedef {!Object<{fileSystemId: !unpacker.types.FileSystemId, |
| 75 * requestId: !unpacker.types.RequestId, | 75 * requestId: !unpacker.types.RequestId, |
| 76 * openRequestId: !unpacker.types.RequestId, | 76 * openRequestId: !unpacker.types.RequestId, |
| 77 * offset: number, | 77 * offset: number, |
| 78 * length: number}>} | 78 * length: number}>} |
| 79 */ | 79 */ |
| 80 unpacker.types.ReadFileRequestedOptions; | 80 unpacker.types.ReadFileRequestedOptions; |
| OLD | NEW |