| 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 using google_apis::AboutResourceCallback; | 7 using google_apis::AboutResourceCallback; |
| 8 using google_apis::AppListCallback; | 8 using google_apis::AppListCallback; |
| 9 using google_apis::AuthStatusCallback; | 9 using google_apis::AuthStatusCallback; |
| 10 using google_apis::AuthorizeAppCallback; | 10 using google_apis::AuthorizeAppCallback; |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 CancelCallback DummyDriveService::GetUploadStatus( | 185 CancelCallback DummyDriveService::GetUploadStatus( |
| 186 const GURL& upload_url, | 186 const GURL& upload_url, |
| 187 int64 content_length, | 187 int64 content_length, |
| 188 const UploadRangeCallback& callback) { return CancelCallback(); } | 188 const UploadRangeCallback& callback) { return CancelCallback(); } |
| 189 | 189 |
| 190 CancelCallback DummyDriveService::AuthorizeApp( | 190 CancelCallback DummyDriveService::AuthorizeApp( |
| 191 const std::string& resource_id, | 191 const std::string& resource_id, |
| 192 const std::string& app_id, | 192 const std::string& app_id, |
| 193 const AuthorizeAppCallback& callback) { return CancelCallback(); } | 193 const AuthorizeAppCallback& callback) { return CancelCallback(); } |
| 194 | 194 |
| 195 CancelCallback DummyDriveService::GetResourceListInDirectoryByWapi( |
| 196 const std::string& directory_resource_id, |
| 197 const GetResourceListCallback& callback) { return CancelCallback(); } |
| 198 |
| 199 CancelCallback DummyDriveService::GetRemainingResourceList( |
| 200 const GURL& next_url, |
| 201 const GetResourceListCallback& callback) { return CancelCallback(); } |
| 202 |
| 195 } // namespace drive | 203 } // namespace drive |
| OLD | NEW |