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

Unified Diff: chrome/browser/chromeos/drive/drive_file_system.cc

Issue 11142036: Add Move operation to the the scheduler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review fixes Created 8 years, 2 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/drive_file_system.cc
diff --git a/chrome/browser/chromeos/drive/drive_file_system.cc b/chrome/browser/chromeos/drive/drive_file_system.cc
index 11214ae5f6c7a570fa6ca42e584379d14fd2f123..79f7773350db9c3d0978eca0c68e10a710082d96 100644
--- a/chrome/browser/chromeos/drive/drive_file_system.cc
+++ b/chrome/browser/chromeos/drive/drive_file_system.cc
@@ -1017,7 +1017,7 @@ void DriveFileSystem::Move(const FilePath& src_file_path,
void DriveFileSystem::MoveOnUIThread(const FilePath& src_file_path,
const FilePath& dest_file_path,
const FileOperationCallback& callback) {
- drive_operations_.Move(src_file_path, dest_file_path, callback);
+ scheduler_->Move(src_file_path, dest_file_path, callback);
}
void DriveFileSystem::MoveEntryFromRootDirectory(

Powered by Google App Engine
This is Rietveld 408576698