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

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

Issue 10876075: AddEntryToDirectory now takes a FilePath and scoped_ptr<DocumentEntry> (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: 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/drive_file_system_interface.h
===================================================================
--- chrome/browser/chromeos/gdata/drive_file_system_interface.h (revision 153571)
+++ chrome/browser/chromeos/gdata/drive_file_system_interface.h (working copy)
@@ -335,7 +335,7 @@
// and returns it to the callback.
virtual void GetAvailableSpace(const GetAvailableSpaceCallback& callback) = 0;
- // Adds a file entry from |entry| under |virtual_dir_path|, and modifies
+ // Adds a file entry from |doc_entry| under |directory_path|, and modifies
// the cache state.
//
// When uploading a new file, adds a new file entry, and store its content
@@ -346,8 +346,8 @@
//
// |callback| will be called on the UI thread upon completion of operation.
virtual void AddUploadedFile(UploadMode upload_mode,
- const FilePath& virtual_dir_path,
- scoped_ptr<DocumentEntry> entry,
+ const FilePath& directory_path,
+ scoped_ptr<DocumentEntry> doc_entry,
const FilePath& file_content_path,
DriveCache::FileOperationType cache_operation,
const base::Closure& callback) = 0;
« no previous file with comments | « chrome/browser/chromeos/gdata/drive_file_system.cc ('k') | chrome/browser/chromeos/gdata/drive_file_system_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698