| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 const GetResourceListCallback& callback) {} | 44 const GetResourceListCallback& callback) {} |
| 45 | 45 |
| 46 void DummyDriveService::GetResourceListInDirectory( | 46 void DummyDriveService::GetResourceListInDirectory( |
| 47 const std::string& directory_resource_id, | 47 const std::string& directory_resource_id, |
| 48 const GetResourceListCallback& callback) {} | 48 const GetResourceListCallback& callback) {} |
| 49 | 49 |
| 50 void DummyDriveService::Search( | 50 void DummyDriveService::Search( |
| 51 const std::string& search_query, | 51 const std::string& search_query, |
| 52 const GetResourceListCallback& callback) {} | 52 const GetResourceListCallback& callback) {} |
| 53 | 53 |
| 54 void DummyDriveService::SearchInDirectory( | 54 void DummyDriveService::SearchByTitle( |
| 55 const std::string& search_query, | 55 const std::string& title, |
| 56 const std::string& directory_resource_id, | 56 const std::string& directory_resource_id, |
| 57 const GetResourceListCallback& callback) {} | 57 const GetResourceListCallback& callback) {} |
| 58 | 58 |
| 59 void DummyDriveService::GetChangeList( | 59 void DummyDriveService::GetChangeList( |
| 60 int64 start_changestamp, | 60 int64 start_changestamp, |
| 61 const GetResourceListCallback& callback) {} | 61 const GetResourceListCallback& callback) {} |
| 62 | 62 |
| 63 void DummyDriveService::ContinueGetResourceList( | 63 void DummyDriveService::ContinueGetResourceList( |
| 64 const GURL& override_url, | 64 const GURL& override_url, |
| 65 const GetResourceListCallback& callback) {} | 65 const GetResourceListCallback& callback) {} |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 const base::FilePath& drive_file_path, | 145 const base::FilePath& drive_file_path, |
| 146 const GURL& upload_url, | 146 const GURL& upload_url, |
| 147 int64 content_length, | 147 int64 content_length, |
| 148 const UploadRangeCallback& callback) {} | 148 const UploadRangeCallback& callback) {} |
| 149 | 149 |
| 150 void DummyDriveService::AuthorizeApp(const std::string& resource_id, | 150 void DummyDriveService::AuthorizeApp(const std::string& resource_id, |
| 151 const std::string& app_id, | 151 const std::string& app_id, |
| 152 const AuthorizeAppCallback& callback) {} | 152 const AuthorizeAppCallback& callback) {} |
| 153 | 153 |
| 154 } // namespace google_apis | 154 } // namespace google_apis |
| OLD | NEW |