| Index: chrome/browser/file_system/file_system_dispatcher_host.cc
|
| diff --git a/chrome/browser/file_system/file_system_dispatcher_host.cc b/chrome/browser/file_system/file_system_dispatcher_host.cc
|
| index 6dd60722dce67932b3c3ead41b5db6ac325eacf9..96571cefde72aebca623a895c2dd5afcfc75211f 100644
|
| --- a/chrome/browser/file_system/file_system_dispatcher_host.cc
|
| +++ b/chrome/browser/file_system/file_system_dispatcher_host.cc
|
| @@ -161,10 +161,11 @@ void FileSystemDispatcherHost::OnCopy(
|
| GetNewOperation(request_id)->Copy(src_path, dest_path);
|
| }
|
|
|
| -void FileSystemDispatcherHost::OnRemove(int request_id, const FilePath& path) {
|
| +void FileSystemDispatcherHost::OnRemove(
|
| + int request_id, const FilePath& path, bool recursive) {
|
| if (!CheckValidFileSystemPath(path, request_id))
|
| return;
|
| - GetNewOperation(request_id)->Remove(path);
|
| + GetNewOperation(request_id)->Remove(path, recursive);
|
| }
|
|
|
| void FileSystemDispatcherHost::OnReadMetadata(
|
|
|