Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(757)

Unified Diff: chrome/browser/chromeos/gdata/gdata_file_system.h

Issue 10855034: Drive: Remove gdata_params.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review (#16) fix & rebase Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698