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

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

Issue 2910913002: WIP.
Patch Set: rebase Created 3 years, 6 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/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
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
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
OLDNEW
« no previous file with comments | « components/drive/service/dummy_drive_service.h ('k') | components/drive/service/fake_drive_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698