| 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 #ifndef CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ |
| 6 #define CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ | 6 #define CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/drive/drive_service_interface.h" | 8 #include "chrome/browser/drive/drive_service_interface.h" |
| 9 #include "chrome/browser/google_apis/auth_service_interface.h" | 9 #include "chrome/browser/google_apis/auth_service_interface.h" |
| 10 | 10 |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 const google_apis::UploadRangeCallback& callback, | 133 const google_apis::UploadRangeCallback& callback, |
| 134 const google_apis::ProgressCallback& progress_callback) OVERRIDE; | 134 const google_apis::ProgressCallback& progress_callback) OVERRIDE; |
| 135 virtual google_apis::CancelCallback GetUploadStatus( | 135 virtual google_apis::CancelCallback GetUploadStatus( |
| 136 const GURL& upload_url, | 136 const GURL& upload_url, |
| 137 int64 content_length, | 137 int64 content_length, |
| 138 const google_apis::UploadRangeCallback& callback) OVERRIDE; | 138 const google_apis::UploadRangeCallback& callback) OVERRIDE; |
| 139 virtual google_apis::CancelCallback AuthorizeApp( | 139 virtual google_apis::CancelCallback AuthorizeApp( |
| 140 const std::string& resource_id, | 140 const std::string& resource_id, |
| 141 const std::string& app_id, | 141 const std::string& app_id, |
| 142 const google_apis::AuthorizeAppCallback& callback) OVERRIDE; | 142 const google_apis::AuthorizeAppCallback& callback) OVERRIDE; |
| 143 virtual google_apis::CancelCallback GetResourceListInDirectoryByWapi( |
| 144 const std::string& directory_resource_id, |
| 145 const google_apis::GetResourceListCallback& callback) OVERRIDE; |
| 146 virtual google_apis::CancelCallback GetRemainingResourceList( |
| 147 const GURL& next_url, |
| 148 const google_apis::GetResourceListCallback& callback) OVERRIDE; |
| 143 }; | 149 }; |
| 144 | 150 |
| 145 } // namespace drive | 151 } // namespace drive |
| 146 | 152 |
| 147 #endif // CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ | 153 #endif // CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ |
| OLD | NEW |