| Index: chrome/browser/chromeos/gdata/gdata_file_system.h
|
| diff --git a/chrome/browser/chromeos/gdata/gdata_file_system.h b/chrome/browser/chromeos/gdata/gdata_file_system.h
|
| index adecaaf18cfba1af5af0a72c745e4f979f254131..79b6f12dd35ab5604ca04d6671a34502c7ae702b 100644
|
| --- a/chrome/browser/chromeos/gdata/gdata_file_system.h
|
| +++ b/chrome/browser/chromeos/gdata/gdata_file_system.h
|
| @@ -98,11 +98,11 @@ class GDataFileSystem : public GDataFileSystemInterface,
|
| virtual void GetFileByPath(
|
| const FilePath& file_path,
|
| const GetFileCallback& get_file_callback,
|
| - const GetDownloadDataCallback& get_download_data_callback) OVERRIDE;
|
| + const GetContentCallback& get_content_callback) OVERRIDE;
|
| virtual void GetFileByResourceId(
|
| const std::string& resource_id,
|
| const GetFileCallback& get_file_callback,
|
| - const GetDownloadDataCallback& get_download_data_callback) OVERRIDE;
|
| + const GetContentCallback& get_content_callback) OVERRIDE;
|
| virtual void UpdateFileByResourceId(
|
| const std::string& resource_id,
|
| const FileOperationCallback& callback) OVERRIDE;
|
| @@ -242,7 +242,7 @@ class GDataFileSystem : public GDataFileSystemInterface,
|
| void OnGetEntryInfoCompleteForGetFileByPath(
|
| const FilePath& file_path,
|
| const GetFileCallback& get_file_callback,
|
| - const GetDownloadDataCallback& get_download_data_callback,
|
| + const GetContentCallback& get_content_callback,
|
| GDataFileError error,
|
| scoped_ptr<GDataEntryProto> file_info);
|
|
|
| @@ -632,7 +632,7 @@ class GDataFileSystem : public GDataFileSystemInterface,
|
| void GetResolvedFileByPath(
|
| const FilePath& file_path,
|
| const GetFileCallback& get_file_callback,
|
| - const GetDownloadDataCallback& get_download_data_callback,
|
| + const GetContentCallback& get_content_callback,
|
| GDataFileError error,
|
| const GDataEntryProto* entry_proto);
|
|
|
| @@ -697,14 +697,14 @@ class GDataFileSystem : public GDataFileSystemInterface,
|
| void GetFileByPathOnUIThread(
|
| const FilePath& file_path,
|
| const GetFileCallback& get_file_callback,
|
| - const GetDownloadDataCallback& get_download_data_callback);
|
| + const GetContentCallback& get_content_callback);
|
| void GetFileByResourceIdOnUIThread(
|
| const std::string& resource_id,
|
| const GetFileCallback& get_file_callback,
|
| - const GetDownloadDataCallback& get_download_data_callback);
|
| + const GetContentCallback& get_content_callback);
|
| void GetFileByEntryOnUIThread(
|
| const GetFileCallback& get_file_callback,
|
| - const GetDownloadDataCallback& get_download_data_callback,
|
| + const GetContentCallback& get_content_callback,
|
| GDataEntry* entry);
|
| void GetEntryInfoByEntryOnUIThread(
|
| const GetEntryInfoWithFilePathCallback& callback,
|
|
|