Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Side by Side Diff: chrome/common/extensions/docs/examples/api/fileSystemProvider/archive/example1.fake

Issue 360673004: Demonstrate the functionality of the File System Provider API for archives. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "/":{
3 "isDirectory":true,
4 "name":"/",
5 "size":0,
6 "modificationTime":"2014-06-26T08:47:11.591Z"
7 },
8 "/file1.txt":{
9 "isDirectory":false,
10 "name":"file1.txt",
11 "size":46,
12 "modificationTime":"2014-06-26T08:47:11.591Z",
13 "contents":"It works!\nEverything gets displayed correctly."
14 },
15 "/file2":{
16 "isDirectory":false,
17 "name":"file2",
18 "size":150,
19 "modificationTime":"2014-06-26T08:47:11.591Z"
20 },
21 "/dir":{
22 "isDirectory":true,
23 "name":"dir",
24 "size":0,
25 "modificationTime":"2014-06-26T08:47:11.591Z"
26 },
27 "/dir/file3.txt":{
28 "isDirectory":false,
29 "name":"file3.txt",
30 "size":21,
31 "modificationTime":"2014-06-26T08:47:11.591Z",
32 "contents":"Just another example."
33 }
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698