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

Side by Side Diff: components/drive/service/drive_api_service.cc

Issue 2748053005: Parse TeamDrive resource inside ChangeList. (Closed)
Patch Set: rebase Created 3 years, 9 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
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 #include "components/drive/service/drive_api_service.h" 5 #include "components/drive/service/drive_api_service.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 const char kFileResourceShareLinkFields[] = 110 const char kFileResourceShareLinkFields[] =
111 "kind,id,shareLink"; 111 "kind,id,shareLink";
112 const char kFileListFields[] = 112 const char kFileListFields[] =
113 "kind,items(kind,id,title,createdDate,sharedWithMeDate," 113 "kind,items(kind,id,title,createdDate,sharedWithMeDate,"
114 "mimeType,md5Checksum,fileSize,labels/trashed,labels/starred," 114 "mimeType,md5Checksum,fileSize,labels/trashed,labels/starred,"
115 "imageMediaMetadata/width," 115 "imageMediaMetadata/width,"
116 "imageMediaMetadata/height,imageMediaMetadata/rotation,etag," 116 "imageMediaMetadata/height,imageMediaMetadata/rotation,etag,"
117 "parents(id,parentLink),alternateLink," 117 "parents(id,parentLink),alternateLink,"
118 "modifiedDate,lastViewedByMeDate,shared),nextLink"; 118 "modifiedDate,lastViewedByMeDate,shared),nextLink";
119 const char kChangeListFields[] = 119 const char kChangeListFields[] =
120 "kind,items(file(kind,id,title,createdDate,sharedWithMeDate," 120 "kind,items(type,file(kind,id,title,createdDate,sharedWithMeDate,"
121 "mimeType,md5Checksum,fileSize,labels/trashed,labels/starred," 121 "mimeType,md5Checksum,fileSize,labels/trashed,labels/starred,"
122 "imageMediaMetadata/width," 122 "imageMediaMetadata/width,"
123 "imageMediaMetadata/height,imageMediaMetadata/rotation,etag," 123 "imageMediaMetadata/height,imageMediaMetadata/rotation,etag,"
124 "parents(id,parentLink),alternateLink,modifiedDate," 124 "parents(id,parentLink),alternateLink,modifiedDate,"
125 "lastViewedByMeDate,shared),deleted,id,fileId,modificationDate),nextLink," 125 "lastViewedByMeDate,shared),teamDrive(kind,id),teamDriveId,"
hashimoto 2017/03/22 06:40:30 The "teamDrive" dictionary you are adding to test/
yamaguchi 2017/03/22 07:30:36 Done.
126 "deleted,id,fileId,modificationDate),nextLink,"
126 "largestChangeId"; 127 "largestChangeId";
127 128
128 void ExtractOpenUrlAndRun(const std::string& app_id, 129 void ExtractOpenUrlAndRun(const std::string& app_id,
129 const AuthorizeAppCallback& callback, 130 const AuthorizeAppCallback& callback,
130 DriveApiErrorCode error, 131 DriveApiErrorCode error,
131 std::unique_ptr<FileResource> value) { 132 std::unique_ptr<FileResource> value) {
132 DCHECK(!callback.is_null()); 133 DCHECK(!callback.is_null());
133 134
134 if (!value) { 135 if (!value) {
135 callback.Run(error, GURL()); 136 callback.Run(error, GURL());
(...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 // RequestSender before the request is committed because the request has a 878 // RequestSender before the request is committed because the request has a
878 // reference to RequestSender and we should ensure to delete the request when 879 // reference to RequestSender and we should ensure to delete the request when
879 // the sender is deleted. Resolve the circulating dependency and fix it. 880 // the sender is deleted. Resolve the circulating dependency and fix it.
880 const google_apis::CancelCallback callback = 881 const google_apis::CancelCallback callback =
881 sender_->StartRequestWithAuthRetry(std::move(request)); 882 sender_->StartRequestWithAuthRetry(std::move(request));
882 return base::MakeUnique<BatchRequestConfigurator>( 883 return base::MakeUnique<BatchRequestConfigurator>(
883 weak_ref, sender_->blocking_task_runner(), url_generator_, callback); 884 weak_ref, sender_->blocking_task_runner(), url_generator_, callback);
884 } 885 }
885 886
886 } // namespace drive 887 } // namespace drive
OLDNEW
« no previous file with comments | « no previous file | google_apis/drive/drive_api_parser.h » ('j') | google_apis/drive/drive_api_parser.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698