| 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_REQUESTS_H_ | 5 #ifndef GOOGLE_APIS_DRIVE_GDATA_WAPI_REQUESTS_H_ |
| 6 #define CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_REQUESTS_H_ | 6 #define GOOGLE_APIS_DRIVE_GDATA_WAPI_REQUESTS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "chrome/browser/google_apis/base_requests.h" | 11 #include "google_apis/drive/base_requests.h" |
| 12 #include "chrome/browser/google_apis/drive_common_callbacks.h" | 12 #include "google_apis/drive/drive_common_callbacks.h" |
| 13 #include "chrome/browser/google_apis/gdata_wapi_url_generator.h" | 13 #include "google_apis/drive/gdata_wapi_url_generator.h" |
| 14 | 14 |
| 15 namespace google_apis { | 15 namespace google_apis { |
| 16 | 16 |
| 17 class AccountMetadata; | 17 class AccountMetadata; |
| 18 class GDataWapiUrlGenerator; | 18 class GDataWapiUrlGenerator; |
| 19 class ResourceEntry; | 19 class ResourceEntry; |
| 20 | 20 |
| 21 //============================ GetResourceListRequest ======================== | 21 //============================ GetResourceListRequest ======================== |
| 22 | 22 |
| 23 // This class performs the request for fetching a resource list. | 23 // This class performs the request for fetching a resource list. |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 const ProgressCallback& progress_callback, | 506 const ProgressCallback& progress_callback, |
| 507 const std::string& resource_id, | 507 const std::string& resource_id, |
| 508 const base::FilePath& output_file_path); | 508 const base::FilePath& output_file_path); |
| 509 virtual ~DownloadFileRequest(); | 509 virtual ~DownloadFileRequest(); |
| 510 | 510 |
| 511 DISALLOW_COPY_AND_ASSIGN(DownloadFileRequest); | 511 DISALLOW_COPY_AND_ASSIGN(DownloadFileRequest); |
| 512 }; | 512 }; |
| 513 | 513 |
| 514 } // namespace google_apis | 514 } // namespace google_apis |
| 515 | 515 |
| 516 #endif // CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_REQUESTS_H_ | 516 #endif // GOOGLE_APIS_DRIVE_GDATA_WAPI_REQUESTS_H_ |
| OLD | NEW |