| 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_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_ |
| 6 #define CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_ | 6 #define CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/google_apis/drive_service_interface.h" | 8 #include "chrome/browser/google_apis/drive_service_interface.h" |
| 9 | 9 |
| 10 namespace google_apis { | 10 namespace google_apis { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 int64 start_changestamp, | 34 int64 start_changestamp, |
| 35 const std::string& search_query, | 35 const std::string& search_query, |
| 36 bool shared_with_me, | 36 bool shared_with_me, |
| 37 const std::string& directory_resource_id, | 37 const std::string& directory_resource_id, |
| 38 const GetResourceListCallback& callback) OVERRIDE; | 38 const GetResourceListCallback& callback) OVERRIDE; |
| 39 virtual void GetResourceEntry( | 39 virtual void GetResourceEntry( |
| 40 const std::string& resource_id, | 40 const std::string& resource_id, |
| 41 const GetResourceEntryCallback& callback) OVERRIDE; | 41 const GetResourceEntryCallback& callback) OVERRIDE; |
| 42 virtual void GetAccountMetadata( | 42 virtual void GetAccountMetadata( |
| 43 const GetAccountMetadataCallback& callback) OVERRIDE; | 43 const GetAccountMetadataCallback& callback) OVERRIDE; |
| 44 virtual void GetAboutResource( |
| 45 const GetAboutResourceCallback& callback) OVERRIDE; |
| 44 virtual void GetAppList(const GetAppListCallback& callback) OVERRIDE; | 46 virtual void GetAppList(const GetAppListCallback& callback) OVERRIDE; |
| 45 virtual void DeleteResource(const std::string& resource_id, | 47 virtual void DeleteResource(const std::string& resource_id, |
| 46 const std::string& etag, | 48 const std::string& etag, |
| 47 const EntryActionCallback& callback) OVERRIDE; | 49 const EntryActionCallback& callback) OVERRIDE; |
| 48 virtual void DownloadFile( | 50 virtual void DownloadFile( |
| 49 const base::FilePath& virtual_path, | 51 const base::FilePath& virtual_path, |
| 50 const base::FilePath& local_cache_path, | 52 const base::FilePath& local_cache_path, |
| 51 const GURL& download_url, | 53 const GURL& download_url, |
| 52 const DownloadActionCallback& download_action_callback, | 54 const DownloadActionCallback& download_action_callback, |
| 53 const GetContentCallback& get_content_callback) OVERRIDE; | 55 const GetContentCallback& get_content_callback) OVERRIDE; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 int64 content_length, | 95 int64 content_length, |
| 94 const UploadRangeCallback& callback) OVERRIDE; | 96 const UploadRangeCallback& callback) OVERRIDE; |
| 95 virtual void AuthorizeApp(const GURL& edit_url, | 97 virtual void AuthorizeApp(const GURL& edit_url, |
| 96 const std::string& app_id, | 98 const std::string& app_id, |
| 97 const AuthorizeAppCallback& callback) OVERRIDE; | 99 const AuthorizeAppCallback& callback) OVERRIDE; |
| 98 }; | 100 }; |
| 99 | 101 |
| 100 } // namespace google_apis | 102 } // namespace google_apis |
| 101 | 103 |
| 102 #endif // CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_ | 104 #endif // CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_ |
| OLD | NEW |