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

Side by Side Diff: chrome/test/data/chromeos/drive/directory_entry.json

Issue 12090015: Implement CreateDirectoryOperation on Drive API v2. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add an empty line. Created 7 years, 10 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
« no previous file with comments | « chrome/browser/google_apis/drive_api_service.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 "kind": "drive#file",
3 "id": "directory_resource_id",
4 "etag": "\"directory_etag/files_etag\"",
5 "selfLink": "https://www.googleapis.com/drive/v2/files/directory_resource_id",
6 "alternateLink": "https://docs.google.com/folder/d/directory_resource_id/edit" ,
7 "iconLink": "https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_li st.png",
8 "title": "new directory",
9 "mimeType": "application/vnd.google-apps.folder",
10 "labels": {
11 "starred": false,
12 "hidden": false,
13 "trashed": false,
14 "restricted": false,
15 "viewed": true
16 },
17 "createdDate": "2013-01-28T05:54:08.286Z",
18 "modifiedDate": "2013-01-28T05:54:08.281Z",
19 "modifiedByMeDate": "2013-01-28T05:54:08.281Z",
20 "lastViewedByMeDate": "2013-01-28T05:54:08.281Z",
21 "parents": [
22 {
23 "kind": "drive#parentReference",
24 "id": "root_directory_id",
25 "selfLink": "https://www.googleapis.com/drive/v2/files/directory_resource_ id/parents/root_directory_id",
26 "parentLink": "https://www.googleapis.com/drive/v2/files/root_directory_id ",
27 "isRoot": true
28 }
29 ],
30 "userPermission": {
31 "kind": "drive#permission",
32 "etag": "\"directory_etag/permission_etag\"",
33 "id": "me",
34 "selfLink": "https://www.googleapis.com/drive/v2/files/directory_resource_id /permissions/me",
35 "role": "owner",
36 "type": "user"
37 },
38 "quotaBytesUsed": "0",
39 "ownerNames": [
40 "tester"
41 ],
42 "lastModifyingUserName": "tester",
43 "editable": true,
44 "writersCanShare": true,
45 "shared": false
46 }
OLDNEW
« no previous file with comments | « chrome/browser/google_apis/drive_api_service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698