OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 * Sends a test message. | 8 * Sends a test message. |
9 * @param {Object} message Message to be sent. It is converted into JSON string | 9 * @param {Object} message Message to be sent. It is converted into JSON string |
10 * before sending. | 10 * before sending. |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 directoryB: new TestEntryInfo( | 256 directoryB: new TestEntryInfo( |
257 EntryType.DIRECTORY, null, 'A/B', | 257 EntryType.DIRECTORY, null, 'A/B', |
258 null, SharedOption.NONE, 'Jan 1, 2000 1:00 AM', | 258 null, SharedOption.NONE, 'Jan 1, 2000 1:00 AM', |
259 'B', '--', 'Folder'), | 259 'B', '--', 'Folder'), |
260 | 260 |
261 directoryC: new TestEntryInfo( | 261 directoryC: new TestEntryInfo( |
262 EntryType.DIRECTORY, null, 'A/B/C', | 262 EntryType.DIRECTORY, null, 'A/B/C', |
263 null, SharedOption.NONE, 'Jan 1, 2000 1:00 AM', | 263 null, SharedOption.NONE, 'Jan 1, 2000 1:00 AM', |
264 'C', '--', 'Folder'), | 264 'C', '--', 'Folder'), |
265 | 265 |
| 266 directoryD: new TestEntryInfo( |
| 267 EntryType.DIRECTORY, null, 'D', |
| 268 null, SharedOption.NONE, 'Jan 1, 2000 1:00 AM', |
| 269 'D', '--', 'Folder'), |
| 270 |
| 271 directoryE: new TestEntryInfo( |
| 272 EntryType.DIRECTORY, null, 'D/E', |
| 273 null, SharedOption.NONE, 'Jan 1, 2000 1:00 AM', |
| 274 'E', '--', 'Folder'), |
| 275 |
| 276 directoryF: new TestEntryInfo( |
| 277 EntryType.DIRECTORY, null, 'D/E/F', |
| 278 null, SharedOption.NONE, 'Jan 1, 2000 1:00 AM', |
| 279 'F', '--', 'Folder'), |
| 280 |
266 zipArchive: new TestEntryInfo( | 281 zipArchive: new TestEntryInfo( |
267 EntryType.FILE, 'archive.zip', 'archive.zip', | 282 EntryType.FILE, 'archive.zip', 'archive.zip', |
268 'application/x-zip', SharedOption.NONE, 'Jan 1, 2014 1:00 AM', | 283 'application/x-zip', SharedOption.NONE, 'Jan 1, 2014 1:00 AM', |
269 'archive.zip', '533 bytes', 'Zip archive') | 284 'archive.zip', '533 bytes', 'Zip archive') |
270 }; | 285 }; |
OLD | NEW |