| 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 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 google_apis::CancelCallback GetRemainingFileList( | 73 google_apis::CancelCallback GetRemainingFileList( |
| 74 const GURL& next_link, | 74 const GURL& next_link, |
| 75 const google_apis::FileListCallback& callback) override; | 75 const google_apis::FileListCallback& callback) override; |
| 76 | 76 |
| 77 google_apis::CancelCallback GetFileResource( | 77 google_apis::CancelCallback GetFileResource( |
| 78 const std::string& resource_id, | 78 const std::string& resource_id, |
| 79 const google_apis::FileResourceCallback& callback) override; | 79 const google_apis::FileResourceCallback& callback) override; |
| 80 | 80 |
| 81 google_apis::CancelCallback GetFileListInDirectory( | 81 google_apis::CancelCallback GetFileListInDirectory( |
| 82 const std::string& directory_resource_id, | 82 const std::string& directory_resource_id, |
| 83 const std::string& team_drive_id, |
| 83 const google_apis::FileListCallback& callback) override; | 84 const google_apis::FileListCallback& callback) override; |
| 84 | 85 |
| 85 google_apis::CancelCallback RemoveResourceFromDirectory( | 86 google_apis::CancelCallback RemoveResourceFromDirectory( |
| 86 const std::string& parent_resource_id, | 87 const std::string& parent_resource_id, |
| 87 const std::string& resource_id, | 88 const std::string& resource_id, |
| 88 const google_apis::EntryActionCallback& callback) override; | 89 const google_apis::EntryActionCallback& callback) override; |
| 89 | 90 |
| 90 google_apis::CancelCallback SearchByTitle( | 91 google_apis::CancelCallback SearchByTitle( |
| 91 const std::string& title, | 92 const std::string& title, |
| 92 const std::string& directory_resource_id, | 93 const std::string& directory_resource_id, |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 | 204 |
| 204 base::SequenceChecker sequence_checker_; | 205 base::SequenceChecker sequence_checker_; |
| 205 | 206 |
| 206 DISALLOW_COPY_AND_ASSIGN(DriveServiceOnWorker); | 207 DISALLOW_COPY_AND_ASSIGN(DriveServiceOnWorker); |
| 207 }; | 208 }; |
| 208 | 209 |
| 209 } // namespace drive_backend | 210 } // namespace drive_backend |
| 210 } // namespace sync_file_system | 211 } // namespace sync_file_system |
| 211 | 212 |
| 212 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER
_H_ | 213 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER
_H_ |
| OLD | NEW |