| Index: chrome/browser/chromeos/drive/file_system/move_operation.h
|
| diff --git a/chrome/browser/chromeos/drive/file_system/move_operation.h b/chrome/browser/chromeos/drive/file_system/move_operation.h
|
| index 851638b2b6f3432648ab703b3129cb45f7c5ce29..f61792fb195202643450848c5c8a0b3e8191a208 100644
|
| --- a/chrome/browser/chromeos/drive/file_system/move_operation.h
|
| +++ b/chrome/browser/chromeos/drive/file_system/move_operation.h
|
| @@ -38,9 +38,9 @@ class MoveOperation {
|
| // Performs the move operation on the file at drive path |src_file_path|
|
| // with a target of |dest_file_path|. Invokes |callback| when finished with
|
| // the result of the operation.
|
| - void Move(const FilePath& src_file_path,
|
| - const FilePath& dest_file_path,
|
| - const FileOperationCallback& callback);
|
| + virtual void Move(const FilePath& src_file_path,
|
| + const FilePath& dest_file_path,
|
| + const FileOperationCallback& callback);
|
| private:
|
| // Part of Move(). Called after GetEntryInfoPairByPaths() is
|
| // complete. |callback| must not be null.
|
|
|