| OLD | NEW |
| 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/dummy_drive_service.h" | 5 #include "components/drive/service/dummy_drive_service.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 | 8 |
| 9 using google_apis::AboutResourceCallback; | 9 using google_apis::AboutResourceCallback; |
| 10 using google_apis::AppListCallback; | 10 using google_apis::AppListCallback; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 CancelCallback DummyDriveService::GetAllTeamDriveList( | 56 CancelCallback DummyDriveService::GetAllTeamDriveList( |
| 57 const TeamDriveListCallback& callback) { | 57 const TeamDriveListCallback& callback) { |
| 58 return CancelCallback(); | 58 return CancelCallback(); |
| 59 } | 59 } |
| 60 | 60 |
| 61 CancelCallback DummyDriveService::GetAllFileList( | 61 CancelCallback DummyDriveService::GetAllFileList( |
| 62 const FileListCallback& callback) { return CancelCallback(); } | 62 const FileListCallback& callback) { return CancelCallback(); } |
| 63 | 63 |
| 64 CancelCallback DummyDriveService::GetFileListInDirectory( | 64 CancelCallback DummyDriveService::GetFileListInDirectory( |
| 65 const std::string& directory_resource_id, | 65 const std::string& directory_resource_id, |
| 66 const FileListCallback& callback) { return CancelCallback(); } | 66 const std::string& team_drive_id, |
| 67 const FileListCallback& callback) { |
| 68 return CancelCallback(); |
| 69 } |
| 67 | 70 |
| 68 CancelCallback DummyDriveService::Search( | 71 CancelCallback DummyDriveService::Search( |
| 69 const std::string& search_query, | 72 const std::string& search_query, |
| 70 const FileListCallback& callback) { return CancelCallback(); } | 73 const FileListCallback& callback) { return CancelCallback(); } |
| 71 | 74 |
| 72 CancelCallback DummyDriveService::SearchByTitle( | 75 CancelCallback DummyDriveService::SearchByTitle( |
| 73 const std::string& title, | 76 const std::string& title, |
| 74 const std::string& directory_resource_id, | 77 const std::string& directory_resource_id, |
| 75 const FileListCallback& callback) { return CancelCallback(); } | 78 const FileListCallback& callback) { return CancelCallback(); } |
| 76 | 79 |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 const std::string& resource_id, | 236 const std::string& resource_id, |
| 234 const std::string& email, | 237 const std::string& email, |
| 235 google_apis::drive::PermissionRole role, | 238 google_apis::drive::PermissionRole role, |
| 236 const EntryActionCallback& callback) { return CancelCallback(); } | 239 const EntryActionCallback& callback) { return CancelCallback(); } |
| 237 std::unique_ptr<BatchRequestConfiguratorInterface> | 240 std::unique_ptr<BatchRequestConfiguratorInterface> |
| 238 DummyDriveService::StartBatchRequest() { | 241 DummyDriveService::StartBatchRequest() { |
| 239 return std::unique_ptr<BatchRequestConfiguratorInterface>(); | 242 return std::unique_ptr<BatchRequestConfiguratorInterface>(); |
| 240 } | 243 } |
| 241 | 244 |
| 242 } // namespace drive | 245 } // namespace drive |
| OLD | NEW |