| Index: content/child/fileapi/webfilesystem_impl.cc
|
| diff --git a/content/child/fileapi/webfilesystem_impl.cc b/content/child/fileapi/webfilesystem_impl.cc
|
| index e64d06dc98784cac39c7b3f7aa38585ffc193a93..27737286999e0f9eaaf27510806567f38c44b08c 100644
|
| --- a/content/child/fileapi/webfilesystem_impl.cc
|
| +++ b/content/child/fileapi/webfilesystem_impl.cc
|
| @@ -443,23 +443,6 @@ void WebFileSystemImpl::resolveURL(
|
| waitable_results.get());
|
| }
|
|
|
| -void WebFileSystemImpl::deleteFileSystem(
|
| - const blink::WebURL& storage_partition,
|
| - blink::WebFileSystemType type,
|
| - WebFileSystemCallbacks callbacks) {
|
| - int callbacks_id = RegisterCallbacks(callbacks);
|
| - scoped_refptr<WaitableCallbackResults> waitable_results =
|
| - MaybeCreateWaitableResults(callbacks, callbacks_id);
|
| - CallDispatcherOnMainThread(
|
| - main_thread_task_runner_, &FileSystemDispatcher::DeleteFileSystem,
|
| - std::make_tuple(
|
| - GURL(storage_partition), static_cast<storage::FileSystemType>(type),
|
| - base::Bind(&StatusCallbackAdapter,
|
| - base::ThreadTaskRunnerHandle::Get(), callbacks_id,
|
| - base::RetainedRef(waitable_results))),
|
| - waitable_results.get());
|
| -}
|
| -
|
| void WebFileSystemImpl::move(
|
| const blink::WebURL& src_path,
|
| const blink::WebURL& dest_path,
|
|
|