| 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/google_apis/dummy_drive_service.h" | 5 #include "chrome/browser/google_apis/dummy_drive_service.h" |
| 6 | 6 |
| 7 namespace google_apis { | 7 namespace google_apis { |
| 8 | 8 |
| 9 DummyDriveService::DummyDriveService() {} | 9 DummyDriveService::DummyDriveService() {} |
| 10 | 10 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 const std::string& directory_resource_id, | 48 const std::string& directory_resource_id, |
| 49 const GetResourceListCallback& callback) {} | 49 const GetResourceListCallback& callback) {} |
| 50 | 50 |
| 51 void DummyDriveService::GetResourceEntry( | 51 void DummyDriveService::GetResourceEntry( |
| 52 const std::string& resource_id, | 52 const std::string& resource_id, |
| 53 const GetResourceEntryCallback& callback) {} | 53 const GetResourceEntryCallback& callback) {} |
| 54 | 54 |
| 55 void DummyDriveService::GetAccountMetadata( | 55 void DummyDriveService::GetAccountMetadata( |
| 56 const GetAccountMetadataCallback& callback) {} | 56 const GetAccountMetadataCallback& callback) {} |
| 57 | 57 |
| 58 void DummyDriveService::GetAboutResource( |
| 59 const GetAboutResourceCallback& callback) {} |
| 60 |
| 58 void DummyDriveService::GetAppList(const GetAppListCallback& callback) {} | 61 void DummyDriveService::GetAppList(const GetAppListCallback& callback) {} |
| 59 | 62 |
| 60 void DummyDriveService::DeleteResource(const std::string& resource_id, | 63 void DummyDriveService::DeleteResource(const std::string& resource_id, |
| 61 const std::string& etag, | 64 const std::string& etag, |
| 62 const EntryActionCallback& callback) {} | 65 const EntryActionCallback& callback) {} |
| 63 | 66 |
| 64 void DummyDriveService::DownloadFile( | 67 void DummyDriveService::DownloadFile( |
| 65 const base::FilePath& virtual_path, | 68 const base::FilePath& virtual_path, |
| 66 const base::FilePath& local_cache_path, | 69 const base::FilePath& local_cache_path, |
| 67 const GURL& download_url, | 70 const GURL& download_url, |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 const base::FilePath& drive_file_path, | 119 const base::FilePath& drive_file_path, |
| 117 const GURL& upload_url, | 120 const GURL& upload_url, |
| 118 int64 content_length, | 121 int64 content_length, |
| 119 const UploadRangeCallback& callback) {} | 122 const UploadRangeCallback& callback) {} |
| 120 | 123 |
| 121 void DummyDriveService::AuthorizeApp(const GURL& edit_url, | 124 void DummyDriveService::AuthorizeApp(const GURL& edit_url, |
| 122 const std::string& app_id, | 125 const std::string& app_id, |
| 123 const AuthorizeAppCallback& callback) {} | 126 const AuthorizeAppCallback& callback) {} |
| 124 | 127 |
| 125 } // namespace google_apis | 128 } // namespace google_apis |
| OLD | NEW |