| Index: google_apis/drive/drive_api_requests.h
|
| diff --git a/google_apis/drive/drive_api_requests.h b/google_apis/drive/drive_api_requests.h
|
| index 17ae9ab14c2e44effeaa5667127368764a3b402e..36492913f06b273ef917c8cd1af2c9145edd63dc 100644
|
| --- a/google_apis/drive/drive_api_requests.h
|
| +++ b/google_apis/drive/drive_api_requests.h
|
| @@ -690,6 +690,11 @@ class ChangesListRequest : public DriveApiDataRequest<ChangeList> {
|
| start_change_id_ = start_change_id;
|
| }
|
|
|
| + const std::string& team_drive_id() const { return team_drive_id_; }
|
| + void set_team_drive_id(const std::string& team_drive_id) {
|
| + team_drive_id_ = team_drive_id;
|
| + }
|
| +
|
| protected:
|
| // Overridden from DriveApiDataRequest.
|
| GURL GetURLInternal() const override;
|
| @@ -700,6 +705,7 @@ class ChangesListRequest : public DriveApiDataRequest<ChangeList> {
|
| int max_results_;
|
| std::string page_token_;
|
| int64_t start_change_id_;
|
| + std::string team_drive_id_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ChangesListRequest);
|
| };
|
|
|