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

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

Issue 10823226: Get AboutResource as account metadata for Drive V2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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 bc3d247ff570c0eba4df6cd917542b10ede1e11b..38bc48042003e749ee77e3ceaa42129dd5b8ef3f 100644
--- a/chrome/browser/chromeos/gdata/gdata_file_system.h
+++ b/chrome/browser/chromeos/gdata/gdata_file_system.h
@@ -141,8 +141,8 @@ class GDataFileSystem : public GDataFileSystemInterface,
// See also the comment at GDataWapiFeedLoader::UpdateFromFeed().
GDataFileError UpdateFromFeedForTesting(
const std::vector<DocumentFeed*>& feed_list,
- int start_changestamp,
- int root_feed_changestamp);
+ int64 start_changestamp,
+ int64 root_feed_changestamp);
private:
friend class GDataFileSystemTest;
@@ -447,6 +447,12 @@ class GDataFileSystem : public GDataFileSystemInterface,
GDataErrorCode status,
scoped_ptr<base::Value> data);
+ // Callback for handling Drive V2 about resource fetch.
+ void OnGetQuotaStats(
+ const GetAvailableSpaceCallback& callback,
+ GDataErrorCode status,
+ scoped_ptr<base::Value> data);
+
// Callback for handling document remove attempt.
void OnRemovedDocument(
const FileOperationCallback& callback,

Powered by Google App Engine
This is Rietveld 408576698