| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 const GURL& override_url, | 50 const GURL& override_url, |
| 51 const google_apis::GetResourceListCallback& callback) OVERRIDE; | 51 const google_apis::GetResourceListCallback& callback) OVERRIDE; |
| 52 virtual google_apis::CancelCallback GetResourceEntry( | 52 virtual google_apis::CancelCallback GetResourceEntry( |
| 53 const std::string& resource_id, | 53 const std::string& resource_id, |
| 54 const google_apis::GetResourceEntryCallback& callback) OVERRIDE; | 54 const google_apis::GetResourceEntryCallback& callback) OVERRIDE; |
| 55 virtual google_apis::CancelCallback GetShareUrl( | 55 virtual google_apis::CancelCallback GetShareUrl( |
| 56 const std::string& resource_id, | 56 const std::string& resource_id, |
| 57 const GURL& embed_origin, | 57 const GURL& embed_origin, |
| 58 const google_apis::GetShareUrlCallback& callback) OVERRIDE; | 58 const google_apis::GetShareUrlCallback& callback) OVERRIDE; |
| 59 virtual google_apis::CancelCallback GetAboutResource( | 59 virtual google_apis::CancelCallback GetAboutResource( |
| 60 const google_apis::GetAboutResourceCallback& callback) OVERRIDE; | 60 const google_apis::AboutResourceCallback& callback) OVERRIDE; |
| 61 virtual google_apis::CancelCallback GetAppList( | 61 virtual google_apis::CancelCallback GetAppList( |
| 62 const google_apis::GetAppListCallback& callback) OVERRIDE; | 62 const google_apis::AppListCallback& callback) OVERRIDE; |
| 63 virtual google_apis::CancelCallback DeleteResource( | 63 virtual google_apis::CancelCallback DeleteResource( |
| 64 const std::string& resource_id, | 64 const std::string& resource_id, |
| 65 const std::string& etag, | 65 const std::string& etag, |
| 66 const google_apis::EntryActionCallback& callback) OVERRIDE; | 66 const google_apis::EntryActionCallback& callback) OVERRIDE; |
| 67 virtual google_apis::CancelCallback DownloadFile( | 67 virtual google_apis::CancelCallback DownloadFile( |
| 68 const base::FilePath& local_cache_path, | 68 const base::FilePath& local_cache_path, |
| 69 const std::string& resource_id, | 69 const std::string& resource_id, |
| 70 const google_apis::DownloadActionCallback& download_action_callback, | 70 const google_apis::DownloadActionCallback& download_action_callback, |
| 71 const google_apis::GetContentCallback& get_content_callback, | 71 const google_apis::GetContentCallback& get_content_callback, |
| 72 const google_apis::ProgressCallback& progress_callback) OVERRIDE; | 72 const google_apis::ProgressCallback& progress_callback) OVERRIDE; |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 const google_apis::UploadRangeCallback& callback) OVERRIDE; | 132 const google_apis::UploadRangeCallback& callback) OVERRIDE; |
| 133 virtual google_apis::CancelCallback AuthorizeApp( | 133 virtual google_apis::CancelCallback AuthorizeApp( |
| 134 const std::string& resource_id, | 134 const std::string& resource_id, |
| 135 const std::string& app_id, | 135 const std::string& app_id, |
| 136 const google_apis::AuthorizeAppCallback& callback) OVERRIDE; | 136 const google_apis::AuthorizeAppCallback& callback) OVERRIDE; |
| 137 }; | 137 }; |
| 138 | 138 |
| 139 } // namespace drive | 139 } // namespace drive |
| 140 | 140 |
| 141 #endif // CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ | 141 #endif // CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ |
| OLD | NEW |