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, |