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 "chrome/browser/drive/dummy_drive_service.h" | 5 #include "chrome/browser/drive/dummy_drive_service.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "chrome/browser/drive/drive_api_util.h" | 8 #include "chrome/browser/drive/drive_api_util.h" |
9 | 9 |
10 using google_apis::AboutResourceCallback; | 10 using google_apis::AboutResourceCallback; |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 CancelCallback DummyDriveService::GetUploadStatus( | 179 CancelCallback DummyDriveService::GetUploadStatus( |
180 const GURL& upload_url, | 180 const GURL& upload_url, |
181 int64 content_length, | 181 int64 content_length, |
182 const UploadRangeCallback& callback) { return CancelCallback(); } | 182 const UploadRangeCallback& callback) { return CancelCallback(); } |
183 | 183 |
184 CancelCallback DummyDriveService::AuthorizeApp( | 184 CancelCallback DummyDriveService::AuthorizeApp( |
185 const std::string& resource_id, | 185 const std::string& resource_id, |
186 const std::string& app_id, | 186 const std::string& app_id, |
187 const AuthorizeAppCallback& callback) { return CancelCallback(); } | 187 const AuthorizeAppCallback& callback) { return CancelCallback(); } |
188 | 188 |
| 189 CancelCallback DummyDriveService::UninstallApp( |
| 190 const std::string& app_id, |
| 191 const EntryActionCallback& callback) { return CancelCallback(); } |
| 192 |
189 CancelCallback DummyDriveService::GetResourceListInDirectoryByWapi( | 193 CancelCallback DummyDriveService::GetResourceListInDirectoryByWapi( |
190 const std::string& directory_resource_id, | 194 const std::string& directory_resource_id, |
191 const GetResourceListCallback& callback) { return CancelCallback(); } | 195 const GetResourceListCallback& callback) { return CancelCallback(); } |
192 | 196 |
193 CancelCallback DummyDriveService::GetRemainingResourceList( | 197 CancelCallback DummyDriveService::GetRemainingResourceList( |
194 const GURL& next_link, | 198 const GURL& next_link, |
195 const GetResourceListCallback& callback) { return CancelCallback(); } | 199 const GetResourceListCallback& callback) { return CancelCallback(); } |
196 | 200 |
197 } // namespace drive | 201 } // namespace drive |
OLD | NEW |