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

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: 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
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..b5646e85c8616323197a7ab2bdd5094674d6cc6c 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. Called when GetEntryInfoByPath for
+ // mydrive creation is completed.
+ // |callback| must not be null.
+ void DoLoadDirectoryFromServerAfterGetEntryInfoByPath(
kinaba 2013/04/10 04:34:44 How about naming these methods in a way that it ex
+ const DirectoryFetchInfo& directory_fetch_info,
+ const FileOperationCallback& callback,
+ DriveFileError error,
+ scoped_ptr<DriveEntryProto> entry_proto);
+
+ // Part of DoLoadDIrectoryFromServer. Called when GetAboutResource for mydrive
kinaba 2013/04/10 04:34:44 nit: DoLoadD<i>rectory
hidehiko 2013/04/10 06:11:19 Done.
+ // root creation is completed.
+ // |callback must not be null.
Haruki Sato 2013/04/10 03:44:35 |callback| ? missing "|".
hidehiko 2013/04/10 06:11:19 Done.
hidehiko 2013/04/10 06:11:19 Done.
+ void DoLoadDirectoryFromServerAfterGetAboutResource(
+ 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(

Powered by Google App Engine
This is Rietveld 408576698