| 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 30 matching lines...) Expand all Loading... |
| 41 } | 41 } |
| 42 | 42 |
| 43 void DummyDriveService::GetResourceList( | 43 void DummyDriveService::GetResourceList( |
| 44 const GURL& url, | 44 const GURL& url, |
| 45 int64 start_changestamp, | 45 int64 start_changestamp, |
| 46 const std::string& search_query, | 46 const std::string& search_query, |
| 47 bool shared_with_me, | 47 bool shared_with_me, |
| 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::GetAllResourceList( |
| 52 const GetResourceListCallback& callback) {} |
| 53 |
| 54 void DummyDriveService::GetResourceListInDirectory( |
| 55 const std::string& directory_resource_id, |
| 56 const GetResourceListCallback& callback) {} |
| 57 |
| 58 void DummyDriveService::Search( |
| 59 const std::string& search_query, |
| 60 const GetResourceListCallback& callback) {} |
| 61 |
| 62 void DummyDriveService::SearchInDirectory( |
| 63 const std::string& search_query, |
| 64 const std::string& directory_resource_id, |
| 65 const GetResourceListCallback& callback) {} |
| 66 |
| 67 void DummyDriveService::GetChangeList( |
| 68 int64 start_changestamp, |
| 69 const GetResourceListCallback& callback) {} |
| 70 |
| 71 void DummyDriveService::ContinueGetResourceList( |
| 72 const GURL& override_url, |
| 73 const GetResourceListCallback& callback) {} |
| 74 |
| 51 void DummyDriveService::GetResourceEntry( | 75 void DummyDriveService::GetResourceEntry( |
| 52 const std::string& resource_id, | 76 const std::string& resource_id, |
| 53 const GetResourceEntryCallback& callback) {} | 77 const GetResourceEntryCallback& callback) {} |
| 54 | 78 |
| 55 void DummyDriveService::GetAccountMetadata( | 79 void DummyDriveService::GetAccountMetadata( |
| 56 const GetAccountMetadataCallback& callback) {} | 80 const GetAccountMetadataCallback& callback) {} |
| 57 | 81 |
| 58 void DummyDriveService::GetAboutResource( | 82 void DummyDriveService::GetAboutResource( |
| 59 const GetAboutResourceCallback& callback) {} | 83 const GetAboutResourceCallback& callback) {} |
| 60 | 84 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 const base::FilePath& drive_file_path, | 151 const base::FilePath& drive_file_path, |
| 128 const GURL& upload_url, | 152 const GURL& upload_url, |
| 129 int64 content_length, | 153 int64 content_length, |
| 130 const UploadRangeCallback& callback) {} | 154 const UploadRangeCallback& callback) {} |
| 131 | 155 |
| 132 void DummyDriveService::AuthorizeApp(const std::string& resource_id, | 156 void DummyDriveService::AuthorizeApp(const std::string& resource_id, |
| 133 const std::string& app_id, | 157 const std::string& app_id, |
| 134 const AuthorizeAppCallback& callback) {} | 158 const AuthorizeAppCallback& callback) {} |
| 135 | 159 |
| 136 } // namespace google_apis | 160 } // namespace google_apis |
| OLD | NEW |