| 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_GDATA_WAPI_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_ |
| 6 #define CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_ | 6 #define CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 int64 start_changestamp, | 70 int64 start_changestamp, |
| 71 const std::string& search_query, | 71 const std::string& search_query, |
| 72 bool shared_with_me, | 72 bool shared_with_me, |
| 73 const std::string& directory_resource_id, | 73 const std::string& directory_resource_id, |
| 74 const GetResourceListCallback& callback) OVERRIDE; | 74 const GetResourceListCallback& callback) OVERRIDE; |
| 75 virtual void GetResourceEntry( | 75 virtual void GetResourceEntry( |
| 76 const std::string& resource_id, | 76 const std::string& resource_id, |
| 77 const GetResourceEntryCallback& callback) OVERRIDE; | 77 const GetResourceEntryCallback& callback) OVERRIDE; |
| 78 virtual void GetAccountMetadata( | 78 virtual void GetAccountMetadata( |
| 79 const GetAccountMetadataCallback& callback) OVERRIDE; | 79 const GetAccountMetadataCallback& callback) OVERRIDE; |
| 80 virtual void GetAboutResource( |
| 81 const GetAboutResourceCallback& callback) OVERRIDE; |
| 80 virtual void GetAppList(const GetAppListCallback& callback) OVERRIDE; | 82 virtual void GetAppList(const GetAppListCallback& callback) OVERRIDE; |
| 81 virtual void DeleteResource(const std::string& resource_id, | 83 virtual void DeleteResource(const std::string& resource_id, |
| 82 const std::string& etag, | 84 const std::string& etag, |
| 83 const EntryActionCallback& callback) OVERRIDE; | 85 const EntryActionCallback& callback) OVERRIDE; |
| 84 virtual void DownloadFile( | 86 virtual void DownloadFile( |
| 85 const base::FilePath& virtual_path, | 87 const base::FilePath& virtual_path, |
| 86 const base::FilePath& local_cache_path, | 88 const base::FilePath& local_cache_path, |
| 87 const GURL& download_url, | 89 const GURL& download_url, |
| 88 const DownloadActionCallback& download_action_callback, | 90 const DownloadActionCallback& download_action_callback, |
| 89 const GetContentCallback& get_content_callback) OVERRIDE; | 91 const GetContentCallback& get_content_callback) OVERRIDE; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 // reference, as they may outlive this object. | 154 // reference, as they may outlive this object. |
| 153 const GDataWapiUrlGenerator url_generator_; | 155 const GDataWapiUrlGenerator url_generator_; |
| 154 const std::string custom_user_agent_; | 156 const std::string custom_user_agent_; |
| 155 | 157 |
| 156 DISALLOW_COPY_AND_ASSIGN(GDataWapiService); | 158 DISALLOW_COPY_AND_ASSIGN(GDataWapiService); |
| 157 }; | 159 }; |
| 158 | 160 |
| 159 } // namespace google_apis | 161 } // namespace google_apis |
| 160 | 162 |
| 161 #endif // CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_ | 163 #endif // CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_ |
| OLD | NEW |