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

Unified Diff: chrome/browser/chromeos/drive/change_list_loader.h

Issue 13866009: Remove root resource id aliasing from DriveResourceMetadata. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove other resource id check. Created 7 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/change_list_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/drive/change_list_loader.h
diff --git a/chrome/browser/chromeos/drive/change_list_loader.h b/chrome/browser/chromeos/drive/change_list_loader.h
index debf7ae073593c063bb6d2e2ede2581e20531029..f1849dd40bfa87161e88a4fdd3b27e07aad241b2 100644
--- a/chrome/browser/chromeos/drive/change_list_loader.h
+++ b/chrome/browser/chromeos/drive/change_list_loader.h
@@ -155,6 +155,24 @@ class ChangeListLoader {
void DoLoadDirectoryFromServer(const DirectoryFetchInfo& directory_fetch_info,
const FileOperationCallback& callback);
+ // Part of DoLoadDirectoryFromServer for the grand root ("/drive" directory).
+ // Called when GetEntryInfoByPath is completed.
+ // |callback| must not be null.
+ void DoLoadGrandRootDirectoryFromServerAfterGetEntryInfoByPath(
+ const DirectoryFetchInfo& directory_fetch_info,
+ const FileOperationCallback& callback,
+ DriveFileError error,
+ scoped_ptr<DriveEntryProto> entry_proto);
+
+ // Part of DoLoadDirectoryFromServer for the grand root ("/drive" directory).
+ // Called when GetAboutResource is completed.
+ // |callback| must not be null.
+ void DoLoadGrandRootDirectoryFromServerAfterGetAboutResource(
+ const DirectoryFetchInfo& directory_fetch_info,
+ const FileOperationCallback& callback,
+ google_apis::GDataErrorCode status,
+ scoped_ptr<google_apis::AboutResource> about_resource);
+
// Part of DoLoadDirectoryFromServer(). Called after
// LoadFromServer() is complete.
void DoLoadDirectoryFromServerAfterLoad(
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/change_list_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698