| Index: chrome/browser/google_apis/gdata_wapi_service.h
|
| diff --git a/chrome/browser/google_apis/gdata_wapi_service.h b/chrome/browser/google_apis/gdata_wapi_service.h
|
| index 3f0137de0c01d17893f9ff60e60fd73190ae33d1..618db80d5eb1939f22740b76052f2bb301cbebf0 100644
|
| --- a/chrome/browser/google_apis/gdata_wapi_service.h
|
| +++ b/chrome/browser/google_apis/gdata_wapi_service.h
|
| @@ -107,8 +107,19 @@ class GDataWapiService : public DriveServiceInterface,
|
| const std::string& parent_resource_id,
|
| const std::string& directory_name,
|
| const GetResourceEntryCallback& callback) OVERRIDE;
|
| - virtual void InitiateUpload(
|
| - const InitiateUploadParams& params,
|
| + virtual void InitiateUploadNewFile(
|
| + const FilePath& drive_file_path,
|
| + const std::string& content_type,
|
| + int64 content_length,
|
| + const GURL& parent_upload_url,
|
| + const std::string& title,
|
| + const InitiateUploadCallback& callback) OVERRIDE;
|
| + virtual void InitiateUploadExistingFile(
|
| + const FilePath& drive_file_path,
|
| + const std::string& content_type,
|
| + int64 content_length,
|
| + const GURL& upload_url,
|
| + const std::string& etag,
|
| const InitiateUploadCallback& callback) OVERRIDE;
|
| virtual void ResumeUpload(
|
| const ResumeUploadParams& params,
|
|
|