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

Unified Diff: chrome/browser/chromeos/gdata/gdata_file_system_interface.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_interface.h
diff --git a/chrome/browser/chromeos/gdata/gdata_file_system_interface.h b/chrome/browser/chromeos/gdata/gdata_file_system_interface.h
index 0afd9f43f280459b1dfab9be1aa3435094f4d3bd..912c49a947d17125827670414d1408be9e6726b0 100644
--- a/chrome/browser/chromeos/gdata/gdata_file_system_interface.h
+++ b/chrome/browser/chromeos/gdata/gdata_file_system_interface.h
@@ -11,7 +11,7 @@
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/chromeos/gdata/gdata_cache.h"
#include "chrome/browser/chromeos/gdata/gdata_files.h"
-#include "chrome/browser/chromeos/gdata/gdata_params.h"
+#include "chrome/browser/chromeos/gdata/gdata_operations.h"
#include "chrome/browser/chromeos/gdata/gdata_upload_file_info.h"
namespace gdata {
@@ -263,21 +263,21 @@ class GDataFileSystemInterface {
// will be downloaded through gdata api.
//
// Can be called from UI/IO thread. |get_file_callback| and
- // |get_download_data| are run on the calling thread.
+ // |get_content_callback| are run on the calling thread.
virtual void GetFileByPath(
const FilePath& file_path,
const GetFileCallback& get_file_callback,
- const GetDownloadDataCallback& get_download_data_callback) = 0;
+ const GetContentCallback& get_content_callback) = 0;
// Gets a file by the given |resource_id| from the gdata server. Used for
// fetching pinned-but-not-fetched files.
//
// Can be called from UI/IO thread. |get_file_callback| and
- // |get_download_data_callback| are run on the calling thread.
+ // |get_content_callback| are run on the calling thread.
virtual void GetFileByResourceId(
const std::string& resource_id,
const GetFileCallback& get_file_callback,
- const GetDownloadDataCallback& get_download_data_callback) = 0;
+ const GetContentCallback& get_content_callback) = 0;
// Updates a file by the given |resource_id| on the gdata server by
// uploading an updated version. Used for uploading dirty files. The file
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_file_system.cc ('k') | chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698