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

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

Issue 9662041: Implement copy and move operations within the same remote file system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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/gdata_file_system_proxy.h
===================================================================
--- chrome/browser/chromeos/gdata/gdata_file_system_proxy.h (revision 126063)
+++ chrome/browser/chromeos/gdata/gdata_file_system_proxy.h (working copy)
@@ -24,6 +24,12 @@
virtual void GetFileInfo(const GURL& path,
const fileapi::FileSystemOperationInterface::GetMetadataCallback&
callback) OVERRIDE;
+ virtual void Copy(const GURL& src_path, const GURL& dest_path,
+ const fileapi::FileSystemOperationInterface::StatusCallback& callback)
+ OVERRIDE;
+ virtual void Move(const GURL& src_path, const GURL& dest_path,
+ const fileapi::FileSystemOperationInterface::StatusCallback& callback)
+ OVERRIDE;
virtual void ReadDirectory(const GURL& path,
const fileapi::FileSystemOperationInterface::ReadDirectoryCallback&
callback) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698